File tree Expand file tree Collapse file tree 5 files changed +15
-3
lines changed Expand file tree Collapse file tree 5 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
provider "aws" {
2
2
region = var. aws_region
3
- shared_credentials_file = var. aws_shared_credentials_file
3
+ shared_credentials_files = [ var . aws_shared_credentials_file ]
4
4
profile = var. aws_profile
5
5
}
6
6
@@ -122,6 +122,7 @@ locals {
122
122
kind = " mke"
123
123
spec = {
124
124
mke = {
125
+ version = var.mke_version
125
126
adminUsername = " admin"
126
127
adminPassword = var.admin_password
127
128
installFlags : [
@@ -140,6 +141,7 @@ locals {
140
141
kind = " mke+msr"
141
142
spec = {
142
143
mke = {
144
+ version = var.mke_version
143
145
adminUsername = " admin"
144
146
adminPassword = var.admin_password
145
147
installFlags : [
@@ -163,4 +165,4 @@ locals {
163
165
164
166
output "mke_cluster" {
165
167
value = yamlencode (local. launchpad_tmpl )
166
- }
168
+ }
Original file line number Diff line number Diff line change @@ -61,6 +61,11 @@ variable "worker_volume_size" {
61
61
variable "msr_volume_size" {
62
62
default = 100
63
63
}
64
+
64
65
variable "windows_administrator_password" {
65
66
default = " w!ndozePassw0rd"
66
67
}
68
+
69
+ variable "mke_version" {
70
+ default = " 3.5.5"
71
+ }
Original file line number Diff line number Diff line change @@ -120,6 +120,7 @@ locals {
120
120
}
121
121
spec = {
122
122
mke = {
123
+ version = var.mke_version
123
124
adminUsername = " admin"
124
125
adminPassword = var.admin_password
125
126
installFlags : [
Original file line number Diff line number Diff line change @@ -96,3 +96,7 @@ variable "update_domain_count" {
96
96
description = " Specifies the number of update domains that are used"
97
97
default = 2
98
98
}
99
+
100
+ variable "mke_version" {
101
+ default = " 3.5.5"
102
+ }
Original file line number Diff line number Diff line change @@ -84,5 +84,5 @@ variable "windows_password" {
84
84
}
85
85
86
86
variable "mke_version" {
87
- default = " 3.5.2 "
87
+ default = " 3.5.5 "
88
88
}
You can’t perform that action at this time.
0 commit comments