You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/command/test-fixtures/hcl2_upgrade/variables-with-variables/input.json

14 lines
360 B

{
"variables": {
"aws_region": null,
"aws_secondary_region": "{{ user `aws_region` }}",
"aws_secret_key": "",
"aws_access_key": "",
"password": "{{ user `aws_secret_key` }}-{{ user `aws_access_key` }}"
},
"sensitive-variables": [
"aws_secret_key",
"aws_access_key",
"password"
]
}