Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 0b451d2

Browse files
committed
Merge branch 'master' into FP-141
2 parents 112deda + 36f0c61 commit 0b451d2

File tree

2 files changed

+158
-37
lines changed

2 files changed

+158
-37
lines changed

.circleci/config.yml

Lines changed: 158 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,158 @@
1+
orbs:
2+
terraform-orb: bankrate/terraform@1.2.0
3+
4+
version: 2.1
5+
6+
workflows:
7+
pipeline:
8+
jobs:
9+
- terraform-orb/init:
10+
name: example-with-cloudwatch-scheduled-event-init
11+
checkout: true
12+
save-workspace: true
13+
infrastructure_dir: "./examples/example-with-cloudwatch-scheduled-event"
14+
terraform_version: 1.0.3
15+
context: qa-terraform-modules-alternate-provider-testing
16+
- terraform-orb/plan:
17+
name: example-with-cloudwatch-scheduled-event-plan
18+
environment: qa
19+
infrastructure_dir: "./examples/example-with-cloudwatch-scheduled-event"
20+
terraform_version: 1.0.3
21+
attach-workspace: true
22+
save-workspace: false
23+
context: qa-terraform-modules-alternate-provider-testing
24+
requires:
25+
- example-with-cloudwatch-scheduled-event-init
26+
27+
28+
- terraform-orb/init:
29+
name: example-with-dynamo-event-init
30+
checkout: true
31+
save-workspace: true
32+
infrastructure_dir: "./examples/example-with-dynamo-event"
33+
terraform_version: 1.0.3
34+
context: qa-terraform-modules-alternate-provider-testing
35+
- terraform-orb/plan:
36+
name: example-with-dynamo-event-plan
37+
environment: qa
38+
infrastructure_dir: "./examples/example-with-dynamo-event"
39+
terraform_version: 1.0.3
40+
attach-workspace: true
41+
save-workspace: false
42+
context: qa-terraform-modules-alternate-provider-testing
43+
requires:
44+
- example-with-dynamo-event-init
45+
46+
47+
- terraform-orb/init:
48+
name: example-with-functionurl-init
49+
checkout: true
50+
save-workspace: true
51+
infrastructure_dir: "./examples/example-with-functionurl"
52+
terraform_version: 1.0.3
53+
context: qa-terraform-modules-alternate-provider-testing
54+
- terraform-orb/plan:
55+
name: example-with-functionurl-plan
56+
environment: qa
57+
infrastructure_dir: "./examples/example-with-functionurl"
58+
terraform_version: 1.0.3
59+
attach-workspace: true
60+
save-workspace: false
61+
context: qa-terraform-modules-alternate-provider-testing
62+
requires:
63+
- example-with-functionurl-init
64+
65+
66+
- terraform-orb/init:
67+
name: example-with-kinesis-event-init
68+
checkout: true
69+
save-workspace: true
70+
infrastructure_dir: "./examples/example-with-kinesis-event"
71+
terraform_version: 1.0.3
72+
context: qa-terraform-modules-alternate-provider-testing
73+
- terraform-orb/plan:
74+
name: example-with-kinesis-event-plan
75+
environment: qa
76+
infrastructure_dir: "./examples/example-with-kinesis-event"
77+
terraform_version: 1.0.3
78+
attach-workspace: true
79+
save-workspace: false
80+
context: qa-terraform-modules-alternate-provider-testing
81+
requires:
82+
- example-with-kinesis-event-init
83+
84+
85+
- terraform-orb/init:
86+
name: example-with-s3-event-init
87+
checkout: true
88+
save-workspace: true
89+
infrastructure_dir: "./examples/example-with-s3-event"
90+
terraform_version: 1.0.3
91+
context: qa-terraform-modules-alternate-provider-testing
92+
- terraform-orb/plan:
93+
name: example-with-s3-event-plan
94+
environment: qa
95+
infrastructure_dir: "./examples/example-with-s3-event"
96+
terraform_version: 1.0.3
97+
attach-workspace: true
98+
save-workspace: false
99+
context: qa-terraform-modules-alternate-provider-testing
100+
requires:
101+
- example-with-s3-event-init
102+
103+
104+
- terraform-orb/init:
105+
name: example-with-sqs-event-init
106+
checkout: true
107+
save-workspace: true
108+
infrastructure_dir: "./examples/example-with-sqs-event"
109+
terraform_version: 1.0.3
110+
context: qa-terraform-modules-alternate-provider-testing
111+
- terraform-orb/plan:
112+
name: example-with-sqs-event-plan
113+
environment: qa
114+
infrastructure_dir: "./examples/example-with-sqs-event"
115+
terraform_version: 1.0.3
116+
attach-workspace: true
117+
save-workspace: false
118+
context: qa-terraform-modules-alternate-provider-testing
119+
requires:
120+
- example-with-sqs-event-init
121+
122+
123+
- terraform-orb/init:
124+
name: example-with-vpc-init
125+
checkout: true
126+
save-workspace: true
127+
infrastructure_dir: "./examples/example-with-vpc"
128+
terraform_version: 1.0.3
129+
context: qa-terraform-modules-alternate-provider-testing
130+
- terraform-orb/plan:
131+
name: example-with-sqs-event-plan
132+
environment: qa
133+
infrastructure_dir: "./examples/example-with-vpc"
134+
terraform_version: 1.0.3
135+
attach-workspace: true
136+
save-workspace: false
137+
context: qa-terraform-modules-alternate-provider-testing
138+
requires:
139+
- example-with-vpc-init
140+
141+
142+
- terraform-orb/init:
143+
name: example-without-event-init
144+
checkout: true
145+
save-workspace: true
146+
infrastructure_dir: "./examples/example-without-event"
147+
terraform_version: 1.0.3
148+
context: qa-terraform-modules-alternate-provider-testing
149+
- terraform-orb/plan:
150+
name: example-without-event-plan
151+
environment: qa
152+
infrastructure_dir: "./examples/example-without-event"
153+
terraform_version: 1.0.3
154+
attach-workspace: true
155+
save-workspace: false
156+
context: qa-terraform-modules-alternate-provider-testing
157+
requires:
158+
- example-without-event-init

.github/workflows/workflow.yaml

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)