Skip to content

Commit ccf96f6

Browse files
committed
fix: add my-sub-pool to support #631
1 parent a6c4ce2 commit ccf96f6

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" "default" {
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)