Skip to content

Commit 129eb6f

Browse files
authored
Upgrade examples to terraform 0.13 and latest aws provider 3.20 (#372)
1 parent 452f2e6 commit 129eb6f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/terraform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- "modules/*/lambdas/**"
1010

1111
env:
12-
tf_version: "0.12.24"
12+
tf_version: "0.13.5"
1313
tf_working_dir: "."
1414
AWS_REGION: eu-west-1
1515
jobs:

examples/.terraform-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.12.29
1+
0.13.5

examples/default/main.tf

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ module "runners" {
2727
webhook_secret = random_password.random.result
2828
}
2929

30-
# webhook_lambda_zip = "lambdas-download/webhook.zip"
31-
# runner_binaries_syncer_lambda_zip = "lambdas-download/runner-binaries-syncer.zip"
32-
# runners_lambda_zip = "lambdas-download/runners.zip"
33-
enable_organization_runners = false
34-
runner_extra_labels = "default,example"
30+
webhook_lambda_zip = "lambdas-download/webhook.zip"
31+
runner_binaries_syncer_lambda_zip = "lambdas-download/runner-binaries-syncer.zip"
32+
runners_lambda_zip = "lambdas-download/runners.zip"
33+
enable_organization_runners = false
34+
runner_extra_labels = "default,example"
3535

3636
# enable access to the runners via SSM
3737
enable_ssm_on_runners = true

examples/default/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
provider "aws" {
22
region = local.aws_region
3-
version = "3.0"
3+
version = "3.20"
44
}

examples/permissions-boundary/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
provider "aws" {
22
alias = "terraform_role"
33
region = local.aws_region
4-
version = "3.0"
4+
version = "3.20"
55
assume_role {
66
role_arn = data.terraform_remote_state.iam.outputs.role
77
}

examples/ubuntu/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
provider "aws" {
22
region = local.aws_region
3-
version = "3.0"
3+
version = "3.20"
44
}

0 commit comments

Comments
 (0)