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_active_directory_administrator" {
source="./modules/azurerm/r/azurerm_postgresql_active_directory_administrator"# login - (required) is a type of stringlogin=null# object_id - (required) is a type of stringobject_id=null# resource_group_name - (required) is a type of stringresource_group_name=null# server_name - (required) is a type of stringserver_name=null# tenant_id - (required) is a type of stringtenant_id=nulltimeouts=[{
create =null
delete =null
read =null
update =null
}]
}
resource"azurerm_postgresql_active_directory_administrator""this" {
# login - (required) is a type of stringlogin=var.login# object_id - (required) is a type of stringobject_id=var.object_id# resource_group_name - (required) is a type of stringresource_group_name=var.resource_group_name# server_name - (required) is a type of stringserver_name=var.server_name# tenant_id - (required) is a type of stringtenant_id=var.tenant_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"]
}
}
}