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_postgresql_server_key" {
source="./modules/azurerm/r/azurerm_postgresql_server_key"# key_vault_key_id - (required) is a type of stringkey_vault_key_id=null# server_id - (required) is a type of stringserver_id=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_postgresql_server_key""this" {
# key_vault_key_id - (required) is a type of stringkey_vault_key_id=var.key_vault_key_id# server_id - (required) is a type of stringserver_id=var.server_iddynamic"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"]
}
}
}