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_batch_certificate" {
source="./modules/azurerm/r/azurerm_batch_certificate"# account_name - (required) is a type of stringaccount_name=null# certificate - (required) is a type of stringcertificate=null# format - (required) is a type of stringformat=null# password - (optional) is a type of stringpassword=null# resource_group_name - (required) is a type of stringresource_group_name=null# thumbprint - (required) is a type of stringthumbprint=null# thumbprint_algorithm - (required) is a type of stringthumbprint_algorithm=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_batch_certificate""this" {
# account_name - (required) is a type of stringaccount_name=var.account_name# certificate - (required) is a type of stringcertificate=var.certificate# format - (required) is a type of stringformat=var.format# password - (optional) is a type of stringpassword=var.password# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# thumbprint - (required) is a type of stringthumbprint=var.thumbprint# thumbprint_algorithm - (required) is a type of stringthumbprint_algorithm=var.thumbprint_algorithmdynamic"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"]
}
}
}