Skip to content

Commit

Permalink
chore: uses random_string for test
Browse files Browse the repository at this point in the history
* uses a random_string for a larger collusion domain
  • Loading branch information
apeabody authored Sep 11, 2023
1 parent 782eae2 commit 43bb51b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions test/setup/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@ module "gke-project-1" {
source = "terraform-google-modules/project-factory/google"
version = "~> 14.0"

name = "ci-gke-${random_id.random_project_id_suffix.hex}"
random_project_id = true
org_id = var.org_id
folder_id = var.folder_id
billing_account = var.billing_account
name = "ci-gke-${random_id.random_project_id_suffix.hex}"
random_project_id = true
random_project_id_length = 4
org_id = var.org_id
folder_id = var.folder_id
billing_account = var.billing_account
# due to https://github.com/hashicorp/terraform-provider-google/issues/9505 for AP
default_service_account = "keep"

Expand Down

0 comments on commit 43bb51b

Please sign in to comment.