Created
May 28, 2024 16:50
-
-
Save KMatt11/2de40decfde6355a810f435f552adfd1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AWS Credentials | |
export AWS_ACCESS_KEY_ID="your access key id" | |
export AWS_SECRET_ACCESS_KEY="your access key" | |
export AWS_SESSION_TOKEN="session token" | |
# AWS Resources | |
export PERMISSIONS_BOUNDARY_ARN="boundary arn" | |
export PERMISSIONS_BOUNDARY_NAME="permission boundary name" | |
export AWS_GITHUB_ACTIONS_ROLE_ARN="arn reference" | |
export UDS_REGION="us-west-2" | |
# UDS Configuration | |
## Cluster | |
export UDS_CLUSTER_NAME="cluster-name" | |
export UDS_KUBECONFIG="kubeconfig-$UDS_CLUSTER_NAME" | |
## Certs | |
export UDS_ADMIN_TLS_CERT="base64 encoded cert" | |
export UDS_ADMIN_TLS_KEY="base64 encoded key" | |
export UDS_TENANT_TLS_CERT="base64 encoded cert" | |
export UDS_TENANT_TLS_KEY="base64 encoded key" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment