We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Azure Cosmos DB account name's scope is output as "resourceGroup", but the documentation says that these names are globally scoped.
# main.tf module "azure_name_config" { source = "Azure/naming/azurerm" version = "~> 0.4.0" } output "cosmos_scope" { value = module.azure_name_config.cosmosdb_account.scope }
terraform init terraform apply terraform output
cosmos_scope = "resourceGroup"
cosmos_scope = "global"
The text was updated successfully, but these errors were encountered:
For that matter, other outputs are wrong as well:
max_length
min_length
regex
"^[a-z0-9][a-z0-9-_.]+[a-z0-9]$"
"^[a-z0-9][a-z0-9-]{2,}$"
scope
"resourceGroup"
"global"
Sorry, something went wrong.
No branches or pull requests
Azure Cosmos DB account name's scope is output as "resourceGroup", but the documentation says that these names are globally scoped.
Reproduction (click to expand)
Actual
Expected
Environment
The text was updated successfully, but these errors were encountered: