Skip to content

Commit 800c264

Browse files
authoredJul 8, 2021
fix: support terraform 1.x
close #330
1 parent d726cf4 commit 800c264

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,9 @@ jobs:
2424
verify_examples:
2525
name: Verify examples
2626
strategy:
27+
fail-fast: false
2728
matrix:
28-
terraform: [0.13.6, 0.14.5, latest]
29+
terraform: [0.13.6, 0.14.5, 0.15.5, 1.0.2]
2930
example: ["runner-default", "runner-docker", "runner-pre-registered", "runner-public"]
3031
defaults:
3132
run:

‎modules/key-pair/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
terraform {
2-
required_version = "~> 0.12"
2+
required_version = ">= 0.12"
33
required_providers {
44
aws = ">= 2.46"
55
local = ">= 1.4"

0 commit comments

Comments
 (0)
Please sign in to comment.