github.com/ratanraj/packer@v1.3.2/template/test-fixtures/malformed.json (about)

     1  {
     2    "variables": {
     3      "access_key": "{{env `AWS_ACCESS_KEY_ID`}}",
     4      "secret_key": "{{env `AWS_SECRET_ACCESS_KEY`}}"
     5    },
     6    "builders": [{
     7      "type": "amazon-ebs",
     8      "access_key": "{{user `access_key`}}",
     9      "secret_key": "{{user `secret_key`}}",
    10      "region": "us-east-1",
    11      "source_ami": "ami-fce3c696,",
    12      "instance_type": "t2.micro",
    13      "ssh_username": "ubuntu",
    14      "ami_name": "packer-example {{timestamp}}"
    15    }]
    16  }]
    17  
    18    "provisioners": [{
    19      "type": "shell",
    20      "inline": [
    21        "sleep 15",
    22        "sudo yum update -y"
    23      ]
    24    }]
    25  }