We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4d3cbf commit 0a8dfceCopy full SHA for 0a8dfce
test/setup/fixtures.tf
@@ -27,3 +27,18 @@ resource "google_privateca_ca_pool" "default" {
27
publish_crl = true
28
}
29
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