File tree 3 files changed +3
-15
lines changed
3 files changed +3
-15
lines changed Original file line number Diff line number Diff line change @@ -183,8 +183,6 @@ the following steps:
183
183
| csr\_repos | List of Cloud Source Repos created by the module, linked to Cloud Build triggers. |
184
184
| gcs\_bucket\_cloudbuild\_artifacts | Bucket used to store Cloud/Build artifacts in CloudBuild project. |
185
185
| gcs\_bucket\_tfstate | Bucket used for storing terraform state for foundations pipelines in seed project. |
186
- | kms\_crypto\_key | KMS key created by the module. |
187
- | kms\_keyring | KMS Keyring created by the module. |
188
186
| seed\_project\_id | Project where service accounts and core APIs will be enabled. |
189
187
| terraform\_sa\_name | Fully qualified name for privileged service account for Terraform. |
190
188
| terraform\_service\_account | Email for privileged service account for Terraform. |
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ resource "google_folder" "bootstrap" {
31
31
32
32
module "seed_bootstrap" {
33
33
source = " terraform-google-modules/bootstrap/google"
34
- version = " ~> 4 .0"
34
+ version = " ~> 5 .0"
35
35
org_id = var. org_id
36
36
folder_id = google_folder. bootstrap . id
37
37
project_id = " ${ var . project_prefix } -b-seed"
@@ -102,7 +102,7 @@ resource "google_billing_account_iam_member" "tf_billing_admin" {
102
102
// Comment-out the cloudbuild_bootstrap module and its outputs if you want to use Jenkins instead of Cloud Build
103
103
module "cloudbuild_bootstrap" {
104
104
source = " terraform-google-modules/bootstrap/google//modules/cloudbuild"
105
- version = " ~> 3 .0"
105
+ version = " ~> 5 .0"
106
106
org_id = var. org_id
107
107
folder_id = google_folder. bootstrap . id
108
108
project_id = " ${ var . project_prefix } -b-cicd"
@@ -117,7 +117,7 @@ module "cloudbuild_bootstrap" {
117
117
cloudbuild_apply_filename = " cloudbuild-tf-apply.yaml"
118
118
project_prefix = var. project_prefix
119
119
cloud_source_repos = var. cloud_source_repos
120
- terraform_validator_release = " v0.4 .0"
120
+ terraform_validator_release = " v0.6 .0"
121
121
terraform_version = " 0.13.7"
122
122
terraform_version_sha256sum = " 4a52886e019b4fdad2439da5ff43388bbcc6cce9784fde32c53dcd0e28ca9957"
123
123
Original file line number Diff line number Diff line change @@ -58,16 +58,6 @@ output "terraform_validator_policies_repo" {
58
58
value = google_sourcerepo_repository. gcp_policies
59
59
}
60
60
61
- output "kms_keyring" {
62
- description = " KMS Keyring created by the module."
63
- value = module. cloudbuild_bootstrap . kms_keyring
64
- }
65
-
66
- output "kms_crypto_key" {
67
- description = " KMS key created by the module."
68
- value = module. cloudbuild_bootstrap . kms_crypto_key
69
- }
70
-
71
61
/* ----------------------------------------
72
62
Specific to jenkins_bootstrap module
73
63
---------------------------------------- */
You can’t perform that action at this time.
0 commit comments