Skip to content

Commit

Permalink
fix: add my-sub-pool to support #631 (#748)
Browse files Browse the repository at this point in the history
* fix: add my-sub-pool to support #631

* update resource alias
  • Loading branch information
glasnt authored Oct 14, 2024
1 parent b4d3cbf commit 0a8dfce
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions test/setup/fixtures.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,18 @@ resource "google_privateca_ca_pool" "default" {
publish_crl = true
}
}


# sub ca pool to use in privateca subordinate samples
resource "google_privateca_ca_pool" "subpool" {
count = local.num_projects

project = local.project_ids[count.index]
name = "my-sub-pool"
location = "us-central1"
tier = "ENTERPRISE"
publishing_options {
publish_ca_cert = true
publish_crl = true
}
}

0 comments on commit 0a8dfce

Please sign in to comment.