File tree 7 files changed +9
-8
lines changed
test/fixtures/shared_vpc_no_subnets
7 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 18
18
# Make will use bash instead of sh
19
19
SHELL := /usr/bin/env bash
20
20
21
- DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1
21
+ DOCKER_TAG_VERSION_DEVELOPER_TOOLS := 1.16
22
22
DOCKER_IMAGE_DEVELOPER_TOOLS := cft/developer-tools
23
23
REGISTRY_URL := gcr.io/cloud-foundation-cicd
24
24
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ tags:
170
170
- ' integration'
171
171
substitutions :
172
172
_DOCKER_IMAGE_DEVELOPER_TOOLS : ' cft/developer-tools'
173
- _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1'
173
+ _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.16 '
174
174
options :
175
175
machineType : ' N1_HIGHCPU_8'
176
176
env :
Original file line number Diff line number Diff line change 21
21
- ' lint'
22
22
substitutions :
23
23
_DOCKER_IMAGE_DEVELOPER_TOOLS : ' cft/developer-tools'
24
- _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1'
24
+ _DOCKER_TAG_VERSION_DEVELOPER_TOOLS : ' 1.16 '
Original file line number Diff line number Diff line change @@ -63,16 +63,16 @@ output "service_account_unique_id" {
63
63
64
64
output "project_bucket_name" {
65
65
description = " The name of the projec's bucket"
66
- value = google_storage_bucket. project_bucket . * . name
66
+ value = google_storage_bucket. project_bucket [ * ] . name
67
67
}
68
68
69
69
output "project_bucket_self_link" {
70
- value = google_storage_bucket. project_bucket . * . self_link
70
+ value = google_storage_bucket. project_bucket [ * ] . self_link
71
71
description = " Project's bucket selfLink"
72
72
}
73
73
74
74
output "project_bucket_url" {
75
- value = google_storage_bucket. project_bucket . * . url
75
+ value = google_storage_bucket. project_bucket [ * ] . url
76
76
description = " Project's bucket url"
77
77
}
78
78
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ module "project-factory" {
67
67
68
68
group_email = element (
69
69
compact (
70
- concat (gsuite_group. group . * . email , [module . gsuite_group . email ]),
70
+ concat (gsuite_group. group [ * ] . email , [module . gsuite_group . email ]),
71
71
),
72
72
0 ,
73
73
)
Original file line number Diff line number Diff line change 15
15
*/
16
16
17
17
locals {
18
- domain_list = concat (data. google_organization . org . * . domain , [" dummy" ])
18
+ domain_list = concat (data. google_organization . org [ * ] . domain , [" dummy" ])
19
19
domain = var. domain == " " ? element (local. domain_list , 0 ) : var. domain
20
20
email = var. name == " " ? " " : format (" %s@%s" , var. name , local. domain )
21
21
}
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ terraform {
34
34
version = " ~> 3.0"
35
35
}
36
36
gsuite = {
37
+ source = " hashicorp/gsuite"
37
38
version = " ~> 0.1.12"
38
39
}
39
40
}
You can’t perform that action at this time.
0 commit comments