Skip to content

Commit

Permalink
Fix blueprints
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi-bitonti committed Oct 31, 2023
1 parent 59e964e commit d668258
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions blueprints/data-solutions/vertex-mlops/ci-cd.tf
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,12 @@ module "secret-manager" {
project_id = module.project.project_id
source = "../../../modules/secret-manager"
secrets = {
github-key = [var.region]
}
encryption_key = {
"${var.region}" = var.service_encryption_keys.secretmanager
github-key = {
locations = [var.region]
kms = {
"${var.region}" = var.service_encryption_keys.secretmanager
}
}
}
iam = {
github-key = {
Expand Down
2 changes: 1 addition & 1 deletion modules/secret-manager/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ module "secret-manager" {
}
}
}
# tftest modules=1 resources=2
# tftest modules=1 resources=3
```
<!-- BEGIN TFDOC -->
## Variables
Expand Down

0 comments on commit d668258

Please sign in to comment.