File tree Expand file tree Collapse file tree 10 files changed +59
-14
lines changed
integration/simple_example Expand file tree Collapse file tree 10 files changed +59
-14
lines changed Original file line number Diff line number Diff line change 1+ # Copyright 2021 Google LLC
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+
115releaseType : terraform-module
216handleGHRelease : true
Original file line number Diff line number Diff line change 1+ # Copyright 2021 Google LLC
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+
115name : " Close stale issues"
216on :
317 schedule :
Original file line number Diff line number Diff line change @@ -43,3 +43,6 @@ crash.log
4343** /* .tfvars
4444
4545credentials.json
46+
47+ # tf lock file
48+ .terraform.lock.hcl
Original file line number Diff line number Diff line change 1818# Make will use bash instead of sh
1919SHELL := /usr/bin/env bash
2020
21- DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 0.13
21+ DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.0
2222DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
2323REGISTRY_URL := gcr.io/cloud-foundation-cicd
2424
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ The resources/services/activations/deletions that this module will create/trigge
99
1010## Compatibility
1111
12- This module is meant for use with Terraform 0.13. If you haven't [ upgraded] ( https://www.terraform.io/upgrade-guides/0-13.html )
12+ This module is meant for use with Terraform 0.13+ and tested using Terraform 1.0+. If you find incompatibilities using Terraform >=0.13, please open an issue.
13+ If you haven't [ upgraded] ( https://www.terraform.io/upgrade-guides/0-13.html )
1314 and need a Terraform 0.12.x-compatible version of this module, the last released version intended for
1415 Terraform 0.12.x is [ 2.0.2] ( https://registry.terraform.io/modules/terraform-google-modules/folders/google/2.0.2 ) .
1516
Original file line number Diff line number Diff line change 3838- ' integration'
3939substitutions :
4040 _DOCKER_IMAGE_DEVELOPER_TOOLS : ' cft/developer-tools'
41- _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 0.13 '
41+ _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.0 '
Original file line number Diff line number Diff line change 2121- ' lint'
2222substitutions :
2323 _DOCKER_IMAGE_DEVELOPER_TOOLS : ' cft/developer-tools'
24- _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 0.13 '
24+ _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.0 '
Original file line number Diff line number Diff line change 1+ # Copyright 2021 Google LLC
2+ #
3+ # Licensed under the Apache License, Version 2.0 (the "License");
4+ # you may not use this file except in compliance with the License.
5+ # You may obtain a copy of the License at
6+ #
7+ # http://www.apache.org/licenses/LICENSE-2.0
8+ #
9+ # Unless required by applicable law or agreed to in writing, software
10+ # distributed under the License is distributed on an "AS IS" BASIS,
11+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+ # See the License for the specific language governing permissions and
13+ # limitations under the License.
14+
115name : simple_example
216depends :
317 - name : inspec-gcp
Original file line number Diff line number Diff line change @@ -24,14 +24,13 @@ resource "google_folder" "ephemeral" {
2424
2525module "folders-project" {
2626 source = " terraform-google-modules/project-factory/google"
27- version = " ~> 9 .0"
27+ version = " ~> 11 .0"
2828
29- name = " ci-folders"
30- random_project_id = " true"
31- org_id = var. org_id
32- folder_id = google_folder. ephemeral . name
33- billing_account = var. billing_account
34- skip_gcloud_download = true
29+ name = " ci-folders"
30+ random_project_id = " true"
31+ org_id = var. org_id
32+ folder_id = google_folder. ephemeral . name
33+ billing_account = var. billing_account
3534
3635 activate_apis = [
3736 " cloudresourcemanager.googleapis.com" ,
Original file line number Diff line number Diff line change 1515 */
1616
1717terraform {
18- required_version = " >=0.12.6 "
18+ required_version = " >=0.13.0 "
1919}
2020
2121provider "google" {
22- version = " ~> 3.38.0 "
22+ version = " ~> 3.38"
2323}
2424
2525provider "google-beta" {
26- version = " ~> 3.38.0 "
26+ version = " ~> 3.38"
2727}
You can’t perform that action at this time.
0 commit comments