-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
49 lines (49 loc) · 1.48 KB
/
cookiecutter.json
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
{
"terraform_version": "<TERRAFORM_VERSION>",
"terraform_aws_provider_version": "<TERRAFORM_AWS_VERSION>",
"github_org": "octo-org",
"__github_org_tf": "{{ cookiecutter.github_org|lower|replace('-', '_') }}",
"repo_name": "infra",
"__repo_name_tf": "{{ cookiecutter.repo_name|lower|replace('-', '_') }}",
"default_branch": "master",
"aws_region": [
"af-south-1",
"ap-east-1",
"ap-northeast-1",
"ap-northeast-2",
"ap-northeast-3",
"ap-south-1",
"ap-south-2",
"ap-southeast-1",
"ap-southeast-2",
"ap-southeast-3",
"ap-southeast-4",
"ca-central-1",
"ca-west-1",
"eu-central-1",
"eu-central-2",
"eu-north-1",
"eu-south-1",
"eu-south-2",
"eu-west-1",
"eu-west-2",
"eu-west-3",
"il-central-1",
"me-central-1",
"me-south-1",
"sa-east-1",
"us-east-1",
"us-east-2",
"us-west-1",
"us-west-2"
],
"new_admin_group_name": "Administrators",
"__new_admin_group_name_tf": "{{ cookiecutter.new_admin_group_name|lower|replace('.', '_')|replace('-', '_') }}",
"new_admin_user": "jdoe",
"__new_admin_user_tf": "{{ cookiecutter.new_admin_user|lower|replace('.', '_')|replace('-', '_') }}",
"environment": "prod",
"__environment_lower": "{{ cookiecutter.environment|lower|replace('_', '-') }}",
"__environment_upper": "{{ cookiecutter.environment|upper|replace('-', '_') }}",
"_extensions": ["cookiecutter.extensions.UUIDExtension"],
"__tf_state_bucket_postfix_uuid": "{{ uuid4() }}"
}