-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (47 loc) · 1.34 KB
/
deploy-to-aws-by-terraform.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: create resource in aws by terraform apply
on:
pull_request:
branches:
- main
types: [closed]
permissions:
id-token: write
contents: read # actions/checkout のために必要
jobs:
get-caller-identity:
name: deploy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Configure AWS credentials from test account
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
aws-region: us-east-1
- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.8.1
- name: Terraform fmt
id: fmt
working-directory: ./terraform
run: terraform fmt -check
continue-on-error: true
- name: Terraform Init
id: init
working-directory: ./terraform
run: terraform init
- name: Terraform Validate
id: validate
working-directory: ./terraform
run: terraform validate -no-color
- name: Terraform Plan
id: plan
working-directory: ./terraform
run: terraform plan -no-color
continue-on-error: true
- name: Terraform Apply
id: apply
working-directory: ./terraform
run: terraform apply -auto-approve