File tree Expand file tree Collapse file tree 17 files changed +30
-30
lines changed
preemptible_and_regular_instance_templates/simple Expand file tree Collapse file tree 17 files changed +30
-30
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ data "google_compute_zones" "available" {
27
27
28
28
module "instance_template" {
29
29
source = " terraform-google-modules/vm/google//modules/instance_template"
30
- version = " ~> 10 .0"
30
+ version = " ~> 11 .0"
31
31
32
32
region = var. region
33
33
project_id = var. project_id
@@ -59,7 +59,7 @@ module "instance_template" {
59
59
60
60
module "compute_instance" {
61
61
source = " terraform-google-modules/vm/google//modules/compute_instance"
62
- version = " ~> 10 .0"
62
+ version = " ~> 11 .0"
63
63
64
64
region = var. region
65
65
subnetwork = var. subnetwork
@@ -70,7 +70,7 @@ module "compute_instance" {
70
70
71
71
module "disk_snapshots" {
72
72
source = " terraform-google-modules/vm/google//modules/compute_disk_snapshot"
73
- version = " ~> 10 .0"
73
+ version = " ~> 11 .0"
74
74
75
75
name = " backup-policy-test"
76
76
project = var. project_id
Original file line number Diff line number Diff line change 16
16
17
17
module "instance_template" {
18
18
source = " terraform-google-modules/vm/google//modules/instance_template"
19
- version = " ~> 10 .0"
19
+ version = " ~> 11 .0"
20
20
21
21
region = var. region
22
22
project_id = var. project_id
@@ -26,7 +26,7 @@ module "instance_template" {
26
26
27
27
module "compute_instance" {
28
28
source = " terraform-google-modules/vm/google//modules/compute_instance"
29
- version = " ~> 10 .0"
29
+ version = " ~> 11 .0"
30
30
31
31
region = var. region
32
32
zone = var. zone
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ provider "google" {
22
22
23
23
module "instance_template" {
24
24
source = " terraform-google-modules/vm/google//modules/instance_template"
25
- version = " ~> 10 .0"
25
+ version = " ~> 11 .0"
26
26
27
27
project_id = var. project_id
28
28
subnetwork = var. subnetwork
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ resource "google_compute_address" "ip_address" {
26
26
27
27
module "instance_template" {
28
28
source = " terraform-google-modules/vm/google//modules/instance_template"
29
- version = " ~> 10 .0"
29
+ version = " ~> 11 .0"
30
30
31
31
project_id = var. project_id
32
32
subnetwork = var. subnetwork
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ resource "google_kms_crypto_key" "example-key" {
37
37
38
38
module "instance_template" {
39
39
source = " terraform-google-modules/vm/google//modules/instance_template"
40
- version = " ~> 10 .0"
40
+ version = " ~> 11 .0"
41
41
42
42
project_id = var. project_id
43
43
subnetwork = var. subnetwork
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ locals {
33
33
34
34
module "instance_template" {
35
35
source = " terraform-google-modules/vm/google//modules/instance_template"
36
- version = " ~> 10 .0"
36
+ version = " ~> 11 .0"
37
37
38
38
project_id = var. project_id
39
39
subnetwork = var. subnetwork
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ provider "google-beta" {
28
28
29
29
module "instance_template" {
30
30
source = " terraform-google-modules/vm/google//modules/instance_template"
31
- version = " ~> 10 .0"
31
+ version = " ~> 11 .0"
32
32
33
33
project_id = var. project_id
34
34
subnetwork = var. subnetwork
@@ -37,7 +37,7 @@ module "instance_template" {
37
37
38
38
module "mig" {
39
39
source = " terraform-google-modules/vm/google//modules/mig"
40
- version = " ~> 10 .0"
40
+ version = " ~> 11 .0"
41
41
42
42
project_id = var. project_id
43
43
region = var. region
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ provider "google-beta" {
28
28
29
29
module "instance_template" {
30
30
source = " terraform-google-modules/vm/google//modules/instance_template"
31
- version = " ~> 10 .0"
31
+ version = " ~> 11 .0"
32
32
33
33
name_prefix = " ${ var . hostname } -instance-template"
34
34
project_id = var. project_id
@@ -58,7 +58,7 @@ module "instance_template" {
58
58
59
59
module "mig" {
60
60
source = " terraform-google-modules/vm/google//modules/mig"
61
- version = " ~> 10 .0"
61
+ version = " ~> 11 .0"
62
62
63
63
project_id = var. project_id
64
64
hostname = var. hostname
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ resource "google_compute_subnetwork" "main" {
52
52
53
53
module "instance_template" {
54
54
source = " terraform-google-modules/vm/google//modules/instance_template"
55
- version = " ~> 10 .0"
55
+ version = " ~> 11 .0"
56
56
57
57
project_id = var. project_id
58
58
subnetwork = google_compute_subnetwork. main . name
@@ -63,7 +63,7 @@ module "instance_template" {
63
63
64
64
module "mig" {
65
65
source = " terraform-google-modules/vm/google//modules/mig"
66
- version = " ~> 10 .0"
66
+ version = " ~> 11 .0"
67
67
68
68
project_id = var. project_id
69
69
instance_template = module. instance_template . self_link
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ provider "google-beta" {
26
26
27
27
module "instance_template" {
28
28
source = " terraform-google-modules/vm/google//modules/instance_template"
29
- version = " ~> 10 .0"
29
+ version = " ~> 11 .0"
30
30
31
31
project_id = var. project_id
32
32
subnetwork = var. subnetwork
@@ -36,7 +36,7 @@ module "instance_template" {
36
36
37
37
module "mig" {
38
38
source = " terraform-google-modules/vm/google//modules/mig"
39
- version = " ~> 10 .0"
39
+ version = " ~> 11 .0"
40
40
41
41
project_id = var. project_id
42
42
region = var. region
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ resource "google_compute_subnetwork" "main" {
44
44
45
45
module "instance_template" {
46
46
source = " terraform-google-modules/vm/google//modules/instance_template"
47
- version = " ~> 10 .0"
47
+ version = " ~> 11 .0"
48
48
49
49
project_id = var. project_id
50
50
region = var. region
@@ -55,7 +55,7 @@ module "instance_template" {
55
55
56
56
module "mig" {
57
57
source = " terraform-google-modules/vm/google//modules/mig"
58
- version = " ~> 10 .0"
58
+ version = " ~> 11 .0"
59
59
60
60
project_id = var. project_id
61
61
region = var. region
Original file line number Diff line number Diff line change @@ -28,15 +28,15 @@ provider "google-beta" {
28
28
29
29
module "preemptible_and_regular_instance_templates" {
30
30
source = " terraform-google-modules/vm/google//modules/preemptible_and_regular_instance_templates"
31
- version = " ~> 10 .0"
31
+ version = " ~> 11 .0"
32
32
33
33
subnetwork = var. subnetwork
34
34
service_account = var. service_account
35
35
}
36
36
37
37
module "mig_with_percent" {
38
38
source = " terraform-google-modules/vm/google//modules/mig_with_percent"
39
- version = " ~> 10 .0"
39
+ version = " ~> 11 .0"
40
40
41
41
region = var. region
42
42
target_size = 4
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ provider "google" {
22
22
23
23
module "preemptible_and_regular_instance_templates" {
24
24
source = " terraform-google-modules/vm/google//modules/preemptible_and_regular_instance_templates"
25
- version = " ~> 10 .0"
25
+ version = " ~> 11 .0"
26
26
27
27
subnetwork = var. subnetwork
28
28
project_id = var. project_id
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ locals {
32
32
33
33
module "instance_template" {
34
34
source = " terraform-google-modules/vm/google//modules/instance_template"
35
- version = " ~> 10 .0"
35
+ version = " ~> 11 .0"
36
36
37
37
name_prefix = " ${ var . hostname } -instance-template"
38
38
machine_type = var. machine_type
@@ -61,7 +61,7 @@ module "instance_template" {
61
61
62
62
module "umig" {
63
63
source = " terraform-google-modules/vm/google//modules/umig"
64
- version = " ~> 10 .0"
64
+ version = " ~> 11 .0"
65
65
66
66
project_id = var. project_id
67
67
subnetwork = var. subnetwork
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ provider "google" {
22
22
23
23
module "instance_template" {
24
24
source = " terraform-google-modules/vm/google//modules/instance_template"
25
- version = " ~> 10 .0"
25
+ version = " ~> 11 .0"
26
26
27
27
project_id = var. project_id
28
28
subnetwork = var. subnetwork
@@ -31,7 +31,7 @@ module "instance_template" {
31
31
32
32
module "umig" {
33
33
source = " terraform-google-modules/vm/google//modules/umig"
34
- version = " ~> 10 .0"
34
+ version = " ~> 11 .0"
35
35
36
36
project_id = var. project_id
37
37
subnetwork = var. subnetwork
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ provider "google" {
22
22
23
23
module "instance_template" {
24
24
source = " terraform-google-modules/vm/google//modules/instance_template"
25
- version = " ~> 10 .0"
25
+ version = " ~> 11 .0"
26
26
27
27
project_id = var. project_id
28
28
subnetwork = var. subnetwork
@@ -31,7 +31,7 @@ module "instance_template" {
31
31
32
32
module "umig" {
33
33
source = " terraform-google-modules/vm/google//modules/umig"
34
- version = " ~> 10 .0"
34
+ version = " ~> 11 .0"
35
35
36
36
project_id = var. project_id
37
37
subnetwork = var. subnetwork
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ provider "google" {
22
22
23
23
module "instance_template" {
24
24
source = " terraform-google-modules/vm/google//modules/instance_template"
25
- version = " ~> 10 .0"
25
+ version = " ~> 11 .0"
26
26
27
27
project_id = var. project_id
28
28
subnetwork = var. subnetwork
@@ -31,7 +31,7 @@ module "instance_template" {
31
31
32
32
module "umig" {
33
33
source = " terraform-google-modules/vm/google//modules/umig"
34
- version = " ~> 10 .0"
34
+ version = " ~> 11 .0"
35
35
36
36
project_id = var. project_id
37
37
subnetwork = var. subnetwork
You can’t perform that action at this time.
0 commit comments