github.com/hashicorp/packer@v1.14.3/command/test-fixtures/hcl2_upgrade/escaping/input.json (about)

     1  {
     2  	"variables": {
     3  		"conf": "{{ env \"ONE\" }}-{{env \"ANOTHER\"}}-{{ env  `BACKTICKED` }}",
     4  		"nospaces": "{{env \"SOMETHING\"}}",
     5  		"manyspaces": "{{   env \"ASDFASDF\"}}"
     6  	},
     7  	"builders": [
     8  		{
     9  			"type": "null",
    10  			"communicator": "none"
    11  		}
    12  	],
    13  	"provisioners": [
    14  		{
    15  			"type": "shell-local",
    16  			"inline": [
    17  				"echo {{user \"conf\"}}-{{timestamp}}-{{isotime \"01-02-2006\"}}"
    18  			]
    19  		},
    20  		{
    21  			"type": "shell-local",
    22  			"inline": [
    23  				"echo {{ split \"some-string\" \"-\" 0 }}"
    24  			]
    25  		}
    26  	]
    27  }