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_application_insights_api_key" {
source="./modules/azurerm/r/azurerm_application_insights_api_key"# application_insights_id - (required) is a type of stringapplication_insights_id=null# name - (required) is a type of stringname=null# read_permissions - (optional) is a type of set of stringread_permissions=[]
# write_permissions - (optional) is a type of set of stringwrite_permissions=[]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_application_insights_api_key""this" {
# application_insights_id - (required) is a type of stringapplication_insights_id=var.application_insights_id# name - (required) is a type of stringname=var.name# read_permissions - (optional) is a type of set of stringread_permissions=var.read_permissions# write_permissions - (optional) is a type of set of stringwrite_permissions=var.write_permissionsdynamic"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"]
}
}
}