Skip to content

Commit 2e01f3b

Browse files
authored
Merge branch 'main' into fix-root-ca-sample
2 parents f5acd83 + 0a8dfce commit 2e01f3b

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

test/setup/fixtures.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,18 @@ resource "google_privateca_ca_pool" "default" {
2727
publish_crl = true
2828
}
2929
}
30+
31+
32+
# sub ca pool to use in privateca subordinate samples
33+
resource "google_privateca_ca_pool" "subpool" {
34+
count = local.num_projects
35+
36+
project = local.project_ids[count.index]
37+
name = "my-sub-pool"
38+
location = "us-central1"
39+
tier = "ENTERPRISE"
40+
publishing_options {
41+
publish_ca_cert = true
42+
publish_crl = true
43+
}
44+
}

0 commit comments

Comments
 (0)