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_automation_variable_int" {
source="./modules/azurerm/r/azurerm_automation_variable_int"# automation_account_name - (required) is a type of stringautomation_account_name=null# description - (optional) is a type of stringdescription=null# encrypted - (optional) is a type of boolencrypted=null# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# value - (optional) is a type of numbervalue=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_automation_variable_int""this" {
# automation_account_name - (required) is a type of stringautomation_account_name=var.automation_account_name# description - (optional) is a type of stringdescription=var.description# encrypted - (optional) is a type of boolencrypted=var.encrypted# name - (required) is a type of stringname=var.name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# value - (optional) is a type of numbervalue=var.valuedynamic"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"]
}
}
}