File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
examples/eks_test_fixture Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ before_script:
22
22
- export TF_VAR_region=${AWS_REGION}
23
23
- echo "using AWS_REGION=${AWS_REGION}"
24
24
- export TF_WARN_OUTPUT_ERRORS=1
25
- - curl --silent --output terraform.zip https://releases.hashicorp.com/terraform/0.11.7 /terraform_0.11.7_linux_amd64 .zip
26
- - sha256sum terraform.zip | grep "6b8ce67647a59b2a3f70199c304abca0ddec0e49fd060944c26f666298e23418 "
25
+ - curl --silent --output terraform.zip https://releases.hashicorp.com/terraform/0.11.8 /terraform_0.11.8_linux_amd64 .zip
26
+ - sha256sum terraform.zip | grep "84ccfb8e13b5fce63051294f787885b76a1fedef6bdbecf51c5e586c9e20c9b7 "
27
27
- unzip terraform.zip ; rm -f terraform.zip; chmod +x terraform
28
28
- mkdir -p ${HOME}/bin ; export PATH=${PATH}:${HOME}/bin; mv terraform ${HOME}/bin/
29
29
- terraform -v
Original file line number Diff line number Diff line change 1
1
terraform {
2
- required_version = " = 0.11.7 "
2
+ required_version = " = 0.11.8 "
3
3
}
4
4
5
5
provider "aws" {
Original file line number Diff line number Diff line change 1
1
resource "aws_autoscaling_group" "workers" {
2
-
3
-
4
2
name_prefix = " ${ aws_eks_cluster . this . name } -${ lookup (var. worker_groups [count . index ], " name" , count. index )} "
5
3
desired_capacity = " ${ lookup (var. worker_groups [count . index ], " asg_desired_capacity" , local. workers_group_defaults [" asg_desired_capacity" ])} "
6
4
max_size = " ${ lookup (var. worker_groups [count . index ], " asg_max_size" , local. workers_group_defaults [" asg_max_size" ])} "
You can’t perform that action at this time.
0 commit comments