File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module github.com/terraform-google-modules/terraform-docs-samples/test/integrati
22
33go 1.22.0
44
5- toolchain go1.22.7
5+ toolchain go1.22.8
66
77require (
88 github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.16.2
Original file line number Diff line number Diff 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+ }
You can’t perform that action at this time.
0 commit comments