-
Notifications
You must be signed in to change notification settings - Fork 0
/
atmos.yaml
253 lines (242 loc) · 11.4 KB
/
atmos.yaml
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
base_path: "."
components:
terraform:
# Can also be set using 'ATMOS_COMPONENTS_TERRAFORM_BASE_PATH' ENV var, or '--terraform-dir' command-line argument
# Supports both absolute and relative paths
base_path: "components/terraform"
# Can also be set using 'ATMOS_COMPONENTS_TERRAFORM_APPLY_AUTO_APPROVE' ENV var
apply_auto_approve: true
# Can also be set using 'ATMOS_COMPONENTS_TERRAFORM_DEPLOY_RUN_INIT' ENV var, or '--deploy-run-init' command-line argument
deploy_run_init: true
# Can also be set using 'ATMOS_COMPONENTS_TERRAFORM_INIT_RUN_RECONFIGURE' ENV var, or '--init-run-reconfigure' command-line argument
init_run_reconfigure: true
# Can also be set using 'ATMOS_COMPONENTS_TERRAFORM_AUTO_GENERATE_BACKEND_FILE' ENV var, or '--auto-generate-backend-file' command-line argument
auto_generate_backend_file: true
helmfile:
# Can also be set using 'ATMOS_COMPONENTS_HELMFILE_BASE_PATH' ENV var, or '--helmfile-dir' command-line argument
# Supports both absolute and relative paths
base_path: "components/helmfile"
# Can also be set using 'ATMOS_COMPONENTS_HELMFILE_USE_EKS' ENV var
# If not specified, defaults to 'true'
use_eks: true
# Can also be set using 'ATMOS_COMPONENTS_HELMFILE_KUBECONFIG_PATH' ENV var
kubeconfig_path: "/dev/shm"
# Can also be set using 'ATMOS_COMPONENTS_HELMFILE_HELM_AWS_PROFILE_PATTERN' ENV var
helm_aws_profile_pattern: "{namespace}-{tenant}-gbl-{stage}-helm2"
# Can also be set using 'ATMOS_COMPONENTS_HELMFILE_CLUSTER_NAME_PATTERN' ENV var
cluster_name_pattern: "{namespace}-{tenant}-{environment}-{stage}-eks-cluster"
stacks:
# Can also be set using 'ATMOS_STACKS_BASE_PATH' ENV var, or '--config-dir' and '--stacks-dir' command-line arguments
# Supports both absolute and relative paths
base_path: "stacks"
# Can also be set using 'ATMOS_STACKS_INCLUDED_PATHS' ENV var (comma-separated values string)
included_paths:
# - "**/*"
- "orgs/**/*"
# - "teams/**/*"
# Can also be set using 'ATMOS_STACKS_EXCLUDED_PATHS' ENV var (comma-separated values string)
excluded_paths:
- "**/_defaults.yaml"
# Can also be set using 'ATMOS_STACKS_NAME_PATTERN' ENV var
name_pattern: "{namespace}-{tenant}-{environment}-{stage}"
# name_pattern: "{tenant}-{environment}-{stage}"
workflows:
# Can also be set using 'ATMOS_WORKFLOWS_BASE_PATH' ENV var, or '--workflows-dir' command-line arguments
# Supports both absolute and relative paths
base_path: "stacks/workflows"
logs:
verbose: true
colors: true
# # Custom CLI commands
# commands:
# - name: tf
# description: Execute 'terraform' commands
# # subcommands
# commands:
# - name: plan
# description: This command plans terraform components
# arguments:
# - name: component
# description: Name of the component
# flags:
# - name: stack
# shorthand: s
# description: Name of the stack
# required: true
# env:
# - key: ENV_VAR_1
# value: ENV_VAR_1_value
# - key: ENV_VAR_2
# # 'valueCommand' is an external command to execute to get the value for the ENV var
# # Either 'value' or 'valueCommand' can be specified for the ENV var, but not both
# valueCommand: echo ENV_VAR_2_value
# # steps support Go templates
# steps:
# - atmos terraform plan {{ .Arguments.component }} -s {{ .Flags.stack }}
# - name: terraform
# description: Execute 'terraform' commands
# # subcommands
# commands:
# - name: provision
# description: This command provisions terraform components
# arguments:
# - name: component
# description: Name of the component
# flags:
# - name: stack
# shorthand: s
# description: Name of the stack
# required: true
# # ENV var values support Go templates
# env:
# - key: ATMOS_COMPONENT
# value: "{{ .Arguments.component }}"
# - key: ATMOS_STACK
# value: "{{ .Flags.stack }}"
# steps:
# - atmos terraform plan $ATMOS_COMPONENT -s $ATMOS_STACK
# - atmos terraform apply $ATMOS_COMPONENT -s $ATMOS_STACK
# - name: play
# description: This command plays games
# steps:
# - echo Playing...
# # subcommands
# commands:
# - name: hello
# description: This command says Hello world
# steps:
# - echo Hello world
# - name: ping
# description: This command plays ping-pong
# # If 'verbose' is set to 'true', atmos will output some info messages to the console before executing the command's steps
# # If 'verbose' is not defined, it implicitly defaults to 'false'
# verbose: true
# steps:
# - echo Playing ping-pong...
# - echo pong
# - name: show
# description: Execute 'show' commands
# # subcommands
# commands:
# - name: component
# description: Execute 'show component' command
# arguments:
# - name: component
# description: Name of the component
# flags:
# - name: stack
# shorthand: s
# description: Name of the stack
# required: true
# # ENV var values support Go templates and have access to {{ .ComponentConfig.xxx.yyy.zzz }} Go template variables
# env:
# - key: ATMOS_COMPONENT
# value: "{{ .Arguments.component }}"
# - key: ATMOS_STACK
# value: "{{ .Flags.stack }}"
# - key: ATMOS_TENANT
# value: "{{ .ComponentConfig.vars.tenant }}"
# - key: ATMOS_STAGE
# value: "{{ .ComponentConfig.vars.stage }}"
# - key: ATMOS_ENVIRONMENT
# value: "{{ .ComponentConfig.vars.environment }}"
# - key: ATMOS_IS_PROD
# value: "{{ .ComponentConfig.settings.config.is_prod }}"
# # If a custom command defines 'component_config' section with 'component' and 'stack', 'atmos' generates the config for the component in the stack
# # and makes it available in {{ .ComponentConfig.xxx.yyy.zzz }} Go template variables,
# # exposing all the component sections (which are also shown by 'atmos describe component' command)
# component_config:
# component: "{{ .Arguments.component }}"
# stack: "{{ .Flags.stack }}"
# # Steps support using Go templates and can access all configuration settings (e.g. {{ .ComponentConfig.xxx.yyy.zzz }})
# # Steps also have access to the ENV vars defined in the 'env' section of the 'command'
# steps:
# - 'echo Atmos component from argument: {{ .Arguments.component }}'
# - 'echo ATMOS_COMPONENT: $ATMOS_COMPONENT'
# - 'echo Atmos stack: {{ .Flags.stack }}'
# - 'echo Terraform component: {{ .ComponentConfig.component }}'
# - 'echo Backend S3 bucket: {{ .ComponentConfig.backend.bucket }}'
# - 'echo Terraform workspace: {{ .ComponentConfig.workspace }}'
# - 'echo Namespace: {{ .ComponentConfig.vars.namespace }}'
# - 'echo Tenant: {{ .ComponentConfig.vars.tenant }}'
# - 'echo Environment: {{ .ComponentConfig.vars.environment }}'
# - 'echo Stage: {{ .ComponentConfig.vars.stage }}'
# - 'echo settings.spacelift.workspace_enabled: {{ .ComponentConfig.settings.spacelift.workspace_enabled }}'
# - 'echo Dependencies: {{ .ComponentConfig.deps }}'
# - 'echo settings.config.is_prod: {{ .ComponentConfig.settings.config.is_prod }}'
# - 'echo ATMOS_IS_PROD: $ATMOS_IS_PROD'
# # Integrations
# integrations:
# # Atlantis integration
# # https://www.runatlantis.io/docs/repo-level-atlantis-yaml.html
# atlantis:
# # Path and name of the Atlantis config file 'atlantis.yaml'
# # Supports absolute and relative paths
# # All the intermediate folders will be created automatically (e.g. 'path: /config/atlantis/atlantis.yaml')
# # Can be overridden on the command line by using '--output-path' command-line argument in 'atmos atlantis generate repo-config' command
# # If not specified (set to an empty string/omitted here, and set to an empty string on the command line), the content of the file will be dumped to 'stdout'
# # On Linux/macOS, you can also use '--output-path=/dev/stdout' to dump the content to 'stdout' without setting it to an empty string in 'atlantis.path'
# path: "atlantis.yaml"
# # Config templates
# # Select a template by using the '--config-template <config_template>' command-line argument in 'atmos atlantis generate repo-config' command
# config_templates:
# config-1:
# version: 3
# automerge: true
# delete_source_branch_on_merge: true
# parallel_plan: true
# parallel_apply: true
# allowed_regexp_prefixes:
# - dev/
# - staging/
# - prod/
# # Project templates
# # Select a template by using the '--project-template <project_template>' command-line argument in 'atmos atlantis generate repo-config' command
# project_templates:
# project-1:
# # generate a project entry for each component in every stack
# name: "{tenant}-{environment}-{stage}-{component}"
# workspace: "{workspace}"
# dir: "{component-path}"
# terraform_version: v1.2
# delete_source_branch_on_merge: true
# autoplan:
# enabled: true
# when_modified:
# - "**/*.tf"
# - "varfiles/$PROJECT_NAME.tfvars.json"
# apply_requirements:
# - "approved"
# # Workflow templates
# # https://www.runatlantis.io/docs/custom-workflows.html#custom-init-plan-apply-commands
# # https://www.runatlantis.io/docs/custom-workflows.html#custom-run-command
# # Select a template by using the '--workflow-template <workflow_template>' command-line argument in 'atmos atlantis generate repo-config' command
# workflow_templates:
# workflow-1:
# plan:
# steps:
# - run: terraform init -input=false
# # When using workspaces, you need to select the workspace using the $WORKSPACE environment variable
# - run: terraform workspace select $WORKSPACE || terraform workspace new $WORKSPACE
# # You must output the plan using '-out $PLANFILE' because Atlantis expects plans to be in a specific location
# - run: terraform plan -input=false -refresh -out $PLANFILE -var-file varfiles/$PROJECT_NAME.tfvars.json
# apply:
# steps:
# - run: terraform apply $PLANFILE
# # Validation schemas (for validating atmos stacks and components)
# schemas:
# # https://json-schema.org
# jsonschema:
# # Can also be set using 'ATMOS_SCHEMAS_JSONSCHEMA_BASE_PATH' ENV var, or '--schemas-jsonschema-dir' command-line arguments
# # Supports both absolute and relative paths
# base_path: "stacks/schemas/jsonschema"
# # https://www.openpolicyagent.org
# opa:
# # Can also be set using 'ATMOS_SCHEMAS_OPA_BASE_PATH' ENV var, or '--schemas-opa-dir' command-line arguments
# # Supports both absolute and relative paths
# base_path: "stacks/schemas/opa"
# # https://cuelang.org
# cue:
# # Can also be set using 'ATMOS_SCHEMAS_CUE_BASE_PATH' ENV var, or '--schemas-cue-dir' command-line arguments
# # Supports both absolute and relative paths
# base_path: "stacks/schemas/cue"