File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 14
14
runs-on : ubuntu-latest
15
15
strategy :
16
16
matrix :
17
- terraform : ['0.12.30 ', '0.13.6', '0.14.6 ']
17
+ terraform : ['0.14.10 ', '0.15.0 ']
18
18
steps :
19
19
- name : ' Checkout'
20
20
uses : actions/checkout@master
@@ -34,12 +34,12 @@ jobs:
34
34
strategy :
35
35
max-parallel : 1
36
36
matrix :
37
- terraform : ['0.14.6']
37
+ terraform : ['0.14.6', '0.15.0' ]
38
38
steps :
39
39
- name : Set up Go
40
40
uses : actions/setup-go@v2
41
41
with :
42
- go-version : ' 1.15 '
42
+ go-version : ' 1.16 '
43
43
44
44
- name : Checkout
45
45
uses : actions/checkout@v1
Original file line number Diff line number Diff line change @@ -8,6 +8,11 @@ resource "aws_vpc_peering_connection" "this" {
8
8
vpc_id = var. this_vpc_id
9
9
peer_region = data. aws_region . peer . name
10
10
tags = merge (var. tags , tomap ({ " Side" = local.same_acount_and_region ? " Both" : " Requester" }))
11
+ # hardcoded
12
+ timeouts {
13
+ create = " 15m"
14
+ delete = " 15m"
15
+ }
11
16
}
12
17
13
18
# #####################################
You can’t perform that action at this time.
0 commit comments