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"azurerm_nat_gateway_public_ip_association" {
source="./modules/azurerm/r/azurerm_nat_gateway_public_ip_association"# nat_gateway_id - (required) is a type of stringnat_gateway_id=null# public_ip_address_id - (required) is a type of stringpublic_ip_address_id=nulltimeouts=[{
create =null
delete =null
read =null
}]
}
resource"azurerm_nat_gateway_public_ip_association""this" {
# nat_gateway_id - (required) is a type of stringnat_gateway_id=var.nat_gateway_id# public_ip_address_id - (required) is a type of stringpublic_ip_address_id=var.public_ip_address_iddynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
# read - (optional) is a type of stringread=timeouts.value["read"]
}
}
}