Merge pull request #827 from GoogleCloudPlatform/lcaggio/artifact-jit

Project module: Add Artifactregistry Service Identity SA creation.
This commit is contained in:
lcaggio 2022-09-20 11:48:17 +02:00 committed by GitHub
commit 0bdcaf9ed6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View File

@ -222,7 +222,7 @@ module "data-platform" {
prefix = "myprefix"
}
# tftest modules=42 resources=314
# tftest modules=42 resources=315
```
## Customizations

View File

@ -67,6 +67,7 @@ locals {
}
)
service_accounts_jit_services = [
"artifactregistry.googleapis.com",
"cloudasset.googleapis.com",
"gkehub.googleapis.com",
"pubsub.googleapis.com",

View File

@ -24,4 +24,4 @@ def test_resources(e2e_plan_runner):
"Test that plan works and the numbers of resources is as expected."
modules, resources = e2e_plan_runner(FIXTURES_DIR)
assert len(modules) == 41
assert len(resources) == 313
assert len(resources) == 314

View File

@ -16,4 +16,4 @@ def test_resources(e2e_plan_runner):
"Test that plan works and the numbers of resources is as expected."
modules, resources = e2e_plan_runner()
assert len(modules) == 13
assert len(resources) == 42
assert len(resources) == 43