forked from aws/amazon-cloudwatch-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
116 lines (102 loc) · 3.2 KB
/
clean-aws-resources.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT
name: AWS Daily Resources Cleaner
on:
workflow_dispatch:
jobs:
clean-opensource-ami:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.TERRAFORM_AWS_ASSUME_ROLE }}
aws-region: us-west-2
- name: Clean old ami
run: go run ./tool/clean/clean_ami/clean_ami.go --tags=clean
clean-opensource-dedicated-hosts:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.TERRAFORM_AWS_ASSUME_ROLE }}
aws-region: us-west-2
- name: Clean old dedicated host
run: go run ./tool/clean/clean_dedicated_host/clean_dedicated_host.go --tags=clean
clean-internal-dedicated-hosts:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
strategy:
matrix:
region: [
us-east-1, us-east-2,
us-west-1, us-west-2,
ap-southeast-1, ap-southeast-2,
ap-south-1,
ap-northeast-1, ap-northeast-2, ap-northeast-3,
ca-central-1,
eu-central-1,
eu-west-1, eu-west-2, eu-west-3,
eu-north-1,
sa-east-1
]
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.INTERNAL_AWS_ASSUME_ROLE }}
aws-region: ${{ matrix.region }}
- name: Clean old dedicated host
run: go run ./tool/clean/clean_dedicated_host/clean_dedicated_host.go --tags=clean
clean-hosts:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
strategy:
matrix:
role: [ internal, external]
include:
- role: internal
role_secret: INTERNAL_AWS_ASSUME_ROLE
- role: external
role_secret: TERRAFORM_AWS_ASSUME_ROLE
region: [
us-east-1, us-east-2,
us-west-1, us-west-2,
ap-southeast-1, ap-southeast-2,
ap-south-1,
ap-northeast-1, ap-northeast-2, ap-northeast-3,
ca-central-1,
eu-central-1,
eu-west-1, eu-west-2, eu-west-3,
eu-north-1,
sa-east-1
]
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v3
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets[matrix.role_secret] }}
aws-region: ${{ matrix.region }}
- name: Clean old dedicated host
run: go run ./tool/clean/clean_host/clean_host.go --tags=clean