customize
block with a custom timeout
value: https://www.terraform.io/docs/providers/vsphere/r/virtual_machine.html#virtual-machine-customization
output "out" {
value = jsondecode("{")
}
❯ terraform apply
Error: Error in function call
on main.tf line 2, in output "out":
2: value = jsondecode("{")
Call to function "jsondecode" failed: EOF.
authorizer_id = data.external.authorizer_ids[each.key].result["result"]
|----------------
| data.external.authorizer_ids is tuple with 2 elements
The given key does not identify an element in this collection value: a number
is required.
@wabmca
hi, using aws_cloudformation_stack resource I'm creating an ASG, As you know cloudformation is adding variable part to name. Later I need full name of ASG(Including variable part added by cfn. For this I'm using data source aws_autoscaling_groups to describe ASG using static name that I have and wild cards.
data "aws_autoscaling_groups" "groups" {
filter {
name = "key"
values = ["name"]
}
filter {
name = "value"
values = ["condorv2-ccproxy01*"]
}
}
This is my code, its not returning any names.
I'm new to Terraform, Please help!