Skip to content

Commit f3b9511

Browse files
authored
Merge branch 'main' into vector_search_sample
2 parents ab15de9 + 0a8dfce commit f3b9511

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

test/integration/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/terraform-google-modules/terraform-docs-samples/test/integrati
22

33
go 1.22.0
44

5-
toolchain go1.22.7
5+
toolchain go1.22.8
66

77
require (
88
github.com/GoogleCloudPlatform/cloud-foundation-toolkit/infra/blueprint-test v0.16.2

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)