Add IAM member prefix validation to variables.tf

This commit is contained in:
Wiktor Niesiobędzki
2024-08-09 09:39:14 +00:00
committed by Wiktor Niesiobędzki
parent c27f634314
commit 70bd037629
3 changed files with 43 additions and 16 deletions

13
.vscode/settings.json vendored
View File

@@ -9,22 +9,23 @@
],
"yaml.schemas": {
"modules/project-factory/schemas/budget.schema.json": [
"budgets/**/*yaml"
"data/**/budgets/**/*yaml"
],
"modules/project-factory/schemas/folder.schema.json": [
"folders/**/*yaml"
"data/**/folders/**/*yaml",
"data/**/hierarchy/**/*yaml"
],
"modules/project-factory/schemas/project.schema.json": [
"projects/**/*yaml"
"data/**/projects/**/*yaml"
],
"modules/vpc-sc/schemas/access-level.schema.json": [
"access-levels/**/*yaml"
"data/**/access-levels/**/*yaml"
],
"modules/vpc-sc/schemas/egress-policy.schema.json": [
"egress-policies/**/*yaml"
"data/**/egress-policies/**/*yaml"
],
"modules/vpc-sc/schemas/ingress-policy.schema.json": [
"ingress-policies/**/*yaml"
"data/**/ingress-policies/**/*yaml"
],
}
}