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_shared_image_version" {
source="./modules/azurerm/r/azurerm_shared_image_version"# exclude_from_latest - (optional) is a type of boolexclude_from_latest=null# gallery_name - (required) is a type of stringgallery_name=null# image_name - (required) is a type of stringimage_name=null# location - (required) is a type of stringlocation=null# managed_image_id - (optional) is a type of stringmanaged_image_id=null# name - (required) is a type of stringname=null# os_disk_snapshot_id - (optional) is a type of stringos_disk_snapshot_id=null# resource_group_name - (required) is a type of stringresource_group_name=null# tags - (optional) is a type of map of stringtags={}
target_region=[{
name =null
regional_replica_count =null
storage_account_type =null
}]
timeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_shared_image_version""this" {
# exclude_from_latest - (optional) is a type of boolexclude_from_latest=var.exclude_from_latest# gallery_name - (required) is a type of stringgallery_name=var.gallery_name# image_name - (required) is a type of stringimage_name=var.image_name# location - (required) is a type of stringlocation=var.location# managed_image_id - (optional) is a type of stringmanaged_image_id=var.managed_image_id# name - (required) is a type of stringname=var.name# os_disk_snapshot_id - (optional) is a type of stringos_disk_snapshot_id=var.os_disk_snapshot_id# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# tags - (optional) is a type of map of stringtags=var.tagsdynamic"target_region" {
for_each=var.target_regioncontent {
# name - (required) is a type of stringname=target_region.value["name"]
# regional_replica_count - (required) is a type of numberregional_replica_count=target_region.value["regional_replica_count"]
# storage_account_type - (optional) is a type of stringstorage_account_type=target_region.value["storage_account_type"]
}
}
dynamic"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"]
}
}
}