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_security_center_subscription_pricing" {
source="./modules/azurerm/r/azurerm_security_center_subscription_pricing"# resource_type - (optional) is a type of stringresource_type=null# tier - (required) is a type of stringtier=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_security_center_subscription_pricing""this" {
# resource_type - (optional) is a type of stringresource_type=var.resource_type# tier - (required) is a type of stringtier=var.tierdynamic"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"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}