Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.37 KB

azurerm_cosmosdb_gremlin_graph_invalid_resource_group_name.md

File metadata and controls

42 lines (25 loc) · 1.37 KB

azurerm_cosmosdb_gremlin_graph_invalid_resource_group_name

Warns about values that appear to be invalid based on azure-rest-api-specs.

In this rule, the string must match the regular expression `^[-\w._()]+$``.

Example

resource "azurerm_cosmosdb_gremlin_graph" "foo" {
  resource_group_name = ... // invalid value
}
$ tflint
1 issue(s) found:

Error: "..." does not match valid pattern ^[-\w\._\(\)]+$ (azurerm_cosmosdb_gremlin_graph_invalid_resource_group_name)

  on template.tf line 2:
  2:   resource_group_name = ... // invalid value

Reference: https://github.com/terraform-linters/tflint-ruleset-azurerm/blob/v0.1.0/docs/rules/azurerm_cosmosdb_gremlin_graph_invalid_resource_group_name.md

Why

Requests containing invalid values will return an error when calling the API by terraform apply.

How to Fix

Replace the warned value with a valid value.

Source

This rule is automatically generated from azure-rest-api-specs. If you are uncertain about the warning, check the following API schema referenced by this rule.

https://github.com/Azure/azure-rest-api-specs/tree/master/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/stable/2023-04-15/cosmos-db.json