Skip to content

Commit

Permalink
Removed ellipsis from readme.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
Vijay Gomathinayagam committed Oct 9, 2017
1 parent 2e61b71 commit 156494a
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@ Below is the packerlicious equivalent of `packer's example template`_
>>> from packerlicious import builder, provisioner, Template
>>> template = Template()
>>> template.add_builder(
... builder.AmazonEbs(
... access_key="...",
... secret_key="...",
... region = "us-east-1",
... source_ami="ami-fce3c696",
... instance_type="t2.micro",
... ssh_username="ubuntu",
... ami_name="packer {{timestamp}}"
... )
... )
builder.AmazonEbs(
access_key="...",
secret_key="...",
region = "us-east-1",
source_ami="ami-fce3c696",
instance_type="t2.micro",
ssh_username="ubuntu",
ami_name="packer {{timestamp}}"
)
)
<packerlicious.builder.AmazonEbs object at 0x104e87ad0>
>>> template.add_provisioner(
... provisioner.Shell(
... script="setup_things.sh"
... )
... )
provisioner.Shell(
script="setup_things.sh"
)
)
<packerlicious.provisioner.Shell object at 0x1048c08d0>
>>> print(template.to_json())
{
Expand Down

0 comments on commit 156494a

Please sign in to comment.