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_iotcentral_application" {
source="./modules/azurerm/r/azurerm_iotcentral_application"# display_name - (optional) is a type of stringdisplay_name=null# location - (required) is a type of stringlocation=null# name - (required) is a type of stringname=null# resource_group_name - (required) is a type of stringresource_group_name=null# sku - (optional) is a type of stringsku=null# sub_domain - (required) is a type of stringsub_domain=null# tags - (optional) is a type of map of stringtags={}
# template - (optional) is a type of stringtemplate=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_iotcentral_application""this" {
# display_name - (optional) is a type of stringdisplay_name=var.display_name# location - (required) is a type of stringlocation=var.location# name - (required) is a type of stringname=var.name# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# sku - (optional) is a type of stringsku=var.sku# sub_domain - (required) is a type of stringsub_domain=var.sub_domain# tags - (optional) is a type of map of stringtags=var.tags# template - (optional) is a type of stringtemplate=var.templatedynamic"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"]
}
}
}