Skip to content

Commit bf68c95

Browse files
authored
Merge pull request #381 from cloudfoundry/fix_test_concourse_update
Update wg-ci-test Concourse
2 parents 8f1f79a + 9b841a9 commit bf68c95

File tree

8 files changed

+260
-238
lines changed

8 files changed

+260
-238
lines changed

terraform-modules/concourse/e2e_test/providers.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ provider "google" {
1818

1919
data "google_client_config" "provider" {}
2020

21-
data "google_container_cluster" "wg_ci" {
21+
data "google_container_cluster" "wg_ci_test" {
2222
project = var.project
2323
name = var.gke_name
2424
location = var.zone
2525
}
2626

2727
provider "kubernetes" {
28-
host = "https://${data.google_container_cluster.wg_ci.endpoint}"
28+
host = "https://${data.google_container_cluster.wg_ci_test.endpoint}"
2929
token = data.google_client_config.provider.access_token
30-
cluster_ca_certificate = base64decode(data.google_container_cluster.wg_ci.master_auth[0].cluster_ca_certificate)
30+
cluster_ca_certificate = base64decode(data.google_container_cluster.wg_ci_test.master_auth[0].cluster_ca_certificate)
3131
}

terragrunt/concourse-wg-ci-test/app/.terraform.lock.hcl

Lines changed: 40 additions & 40 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

terragrunt/concourse-wg-ci-test/backend/.terraform.lock.hcl

Lines changed: 44 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

terragrunt/concourse-wg-ci-test/config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ tf_modules:
4848

4949

5050
fly_team: main
51+
# replace with the target name of your local fly CLI configuration
52+
# don't forget to log in with the fly CLI
53+
fly_target: ari-test
5154

5255
# ---------------------------------------------------------
5356
# In most cases settings below are safe to keep as defaults

0 commit comments

Comments
 (0)