-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.env
116 lines (98 loc) · 4.42 KB
/
build.env
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
#!/usr/bin/env bash
# shellcheck disable=SC2155,SC2154
# PURPOSE: Generate some variables for AWS/EKS. This file is called with one
# argument while sourcing it in.
# -----------------------------------------------------------------------------
# EXEC: source build.env <prod|stage>
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Check for arguments
if [[ "$#" -lt 1 ]]; then
echo "Bro, where's my first argument: stage or prod?"
return
fi
set -x
# -----------------------------------------------------------------------------
# Client Truths
export TF_VAR_myCo='smpl-cloud'
export TF_VAR_myProject='gitops-demo'
export myComponent='env'
# -----------------------------------------------------------------------------
# The Build Environment
export TF_VAR_envBuild="$1"
# These will set names for: EKS-cluser, managed-node-groups, etc
export TF_VAR_project="${TF_VAR_myProject}-${TF_VAR_envBuild}"
export TF_VAR_cluster_apps="$TF_VAR_project"
#export TF_VAR_aws_acct_no="367652197469"
#export TF_VAR_dns_zone='ptest.us.'
#export TF_VAR_hostedZone='ZPEASGC9BUTW5'
#export TF_VAR_zone_private='false'
export TF_VAR_aws_acct_no="367652197469"
export TF_VAR_dns_zone='bb.vivsoft-lab.io'
export TF_VAR_hostedZone='Z03579603RJAZHR5PPUL7'
export TF_VAR_zone_private='true'
#export TF_VAR_domain="${TF_VAR_dns_zone%.*}"
# -----------------------------------------------------------------------------
# PROJECT; will be part of bucketName, naming rules:
export awsProviderVersion='5.25.0'
export AWS_DEFAULT_REGION='us-gov-east-1'
export TF_VAR_region="$AWS_DEFAULT_REGION"
export TF_VAR_stateBucket="tf-state-${TF_VAR_myProject}-${TF_VAR_envBuild}"
export TF_VAR_bucketKey='env'
export stateLockDynamoDB="${TF_VAR_stateBucket}-lock"
# -----------------------------------------------------------------------------
# Environmental Considerations
# Terraform Constants
case "$TF_VAR_envBuild" in
stage)
export TF_VAR_cluster_vault="vault-${TF_VAR_project}"
export TF_VAR_DATADOG_UUID="stage"
export TF_VAR_host_cidr='10.101.0.0/16'
export TF_VAR_minDistSize='3'
export TF_VAR_maxDistSize='12'
export TF_VAR_kubeNode_type='t3.small'
;;
prod)
export TF_VAR_cluster_vault="vault-${TF_VAR_project}"
export TF_VAR_DATADOG_UUID="prod"
export TF_VAR_host_cidr='10.100.0.0/16'
export TF_VAR_minDistSize='4'
export TF_VAR_maxDistSize='12'
export TF_VAR_kubeNode_type='t3.medium'
;;
*) echo "$TF_VAR_envBuild is unsupported; exiting."
;;
esac
# -- Makefile -----------------------------------------------------------------
# Same for either ENV; depends on case
export outputDir='./var'
export filePlan="/tmp/tf-${TF_VAR_myProject}.plan"
# -- KUBERNETES ---------------------------------------------------------------
export KUBECONFIG_DIR="${HOME}/.kube"
# -- KubeDB -------------------------------------------------------------------
# Verify the version in the chart repo when incrementing up
# -- KubeDB -------------------------------------------------------------------
export versKubeDB='v2023.10.9'
export licKey='79e6ac4e-e944-4b1b-8611-48a1bf147cac' # cluster UID
# -- RDBMS --------------------------------------------------------------------
export kubeDbNs='demo'
export pgAdminManifest="${outputDir}/pgadmin.yaml"
export rawPgSqlManifest="https://github.com/kubedb/docs/raw/${versKubeDB}/docs/examples/postgres/quickstart/quick-postgres.yaml"
export pgSqlFileName="${rawPgSqlManifest##*/}"
export pgSqlManifest="${outputDir}/${pgSqlFileName}"
# -----------------------------------------------------------------------------
# RDS CONSTANTS
# -----------------------------------------------------------------------------
export TF_VAR_engine="postgres"
export TF_VAR_identifier="${TF_VAR_myProject}-${TF_VAR_engine}"
# Same for either ENV; depends on case
# What's my IP (public side of home gateway)
export TF_VAR_officeIPAddr="$(curl -s4 icanhazip.com)/32"
# -----------------------------------------------------------------------------
# RDS CONSTANTS
# -----------------------------------------------------------------------------
export TF_VAR_engine="postgres"
export TF_VAR_identifier="${TF_VAR_myProject}-${TF_VAR_engine}-${TF_VAR_envBuild}"
# Change TF backend prefix with ENV change: <stage|prod>
scripts/setup/create-tf-backend.sh
set +x