You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"fastly_tls_subscription_validation" {
source="./modules/fastly/r/fastly_tls_subscription_validation"# subscription_id - (required) is a type of stringsubscription_id=nulltimeouts=[{
create =null
}]
}
variable"subscription_id" {
description="(required) - The ID of the TLS Subscription that should be validated."type=string
}
variable"timeouts" {
description="nested block: NestingSingle, min items: 0, max items: 0"type=set(object(
{
create =string
}
))
default=[]
}
resource"fastly_tls_subscription_validation""this" {
# subscription_id - (required) is a type of stringsubscription_id=var.subscription_iddynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
}
}
}