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_spring_cloud_custom_domain" {
source="./modules/azurerm/r/azurerm_spring_cloud_custom_domain"# certificate_name - (optional) is a type of stringcertificate_name=null# name - (required) is a type of stringname=null# spring_cloud_app_id - (required) is a type of stringspring_cloud_app_id=null# thumbprint - (optional) is a type of stringthumbprint=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_spring_cloud_custom_domain""this" {
# certificate_name - (optional) is a type of stringcertificate_name=var.certificate_name# name - (required) is a type of stringname=var.name# spring_cloud_app_id - (required) is a type of stringspring_cloud_app_id=var.spring_cloud_app_id# thumbprint - (optional) is a type of stringthumbprint=var.thumbprintdynamic"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"]
}
}
}