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.
terraform/internal/configs/testdata/valid-files/variables.tf.json

29 lines
423 B

{
"variable": {
"foo": {},
"bar": {
"default": "hello"
},
"baz": {
"type": "list"
},
"bar-baz": {
"default": [],
"type": "list"
},
"cheese_pizza": {
"description": "Nothing special"
},
"π": {
"default": 3.14159265359
},
"sensitive_value": {
"default": {
"a": 1,
"b": 2
},
"sensitive": true
}
}
}