list in variable
This commit is contained in:
parent
b86c5c4022
commit
c408ff1baf
3 changed files with 21 additions and 6 deletions
|
@ -2,6 +2,10 @@ variable "a" {}
|
||||||
variable "b" {
|
variable "b" {
|
||||||
default = "test"
|
default = "test"
|
||||||
}
|
}
|
||||||
|
variable "c" {
|
||||||
|
type = list
|
||||||
|
default = ["foo", "bar", "baz"]
|
||||||
|
}
|
||||||
|
|
||||||
output "ov1" {
|
output "ov1" {
|
||||||
value = "${var.a}"
|
value = "${var.a}"
|
||||||
|
@ -9,3 +13,6 @@ output "ov1" {
|
||||||
output "ov2" {
|
output "ov2" {
|
||||||
value = "${var.b}"
|
value = "${var.b}"
|
||||||
}
|
}
|
||||||
|
output "ov3" {
|
||||||
|
value = "${var.c[2]}"
|
||||||
|
}
|
||||||
|
|
|
@ -1,15 +1,19 @@
|
||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "0.12.24",
|
"terraform_version": "0.12.24",
|
||||||
"serial": 3,
|
"serial": 8,
|
||||||
"lineage": "53b98038-185e-af43-6c6c-521354912695",
|
"lineage": "53b98038-185e-af43-6c6c-521354912695",
|
||||||
"outputs": {
|
"outputs": {
|
||||||
"ov1": {
|
"ov1": {
|
||||||
"value": "qsd",
|
"value": "foobar",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"ov2": {
|
"ov2": {
|
||||||
"value": "foo",
|
"value": "bar",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"ov3": {
|
||||||
|
"value": "fgh",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,15 +1,19 @@
|
||||||
{
|
{
|
||||||
"version": 4,
|
"version": 4,
|
||||||
"terraform_version": "0.12.24",
|
"terraform_version": "0.12.24",
|
||||||
"serial": 2,
|
"serial": 7,
|
||||||
"lineage": "53b98038-185e-af43-6c6c-521354912695",
|
"lineage": "53b98038-185e-af43-6c6c-521354912695",
|
||||||
"outputs": {
|
"outputs": {
|
||||||
"ov1": {
|
"ov1": {
|
||||||
"value": "aze",
|
"value": "foobar",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"ov2": {
|
"ov2": {
|
||||||
"value": "test",
|
"value": "bar",
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"ov3": {
|
||||||
|
"value": "baz",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue