-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 1019 Bytes
/
.env.example
File metadata and controls
27 lines (21 loc) · 1019 Bytes
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
#!/usr/bin/env bash
# ──────────────────────────────────────────────
# AWS OIDC Setup — Configuration (Template)
# ──────────────────────────────────────────────
# AWS Credentials
export AWS_ACCESS_KEY_ID="YOUR_ACCESS_KEY"
export AWS_SECRET_ACCESS_KEY="YOUR_SECRET_KEY"
export AWS_REGION="us-east-1"
export AWS_ACCOUNT_ID="123456789012"
# IAM role that GitHub Actions will assume
IAM_ROLE_NAME="github-actions-oidc-role"
IAM_POLICY_NAME="github-actions-oidc-policy"
# GitHub
GITHUB_ORG="code4mk"
# "*" → all repos in the org
# "my-app" → single repo, all refs
GITHUB_REPO="*"
# OIDC provider thumbprints
OIDC_THUMBPRINTS="6938fd4d98bab03faadb97b34396831e3780aea1 1c58a3a8518e8759bf075b76b750d4f2df264fcd"
# Audience
OIDC_AUDIENCE="sts.amazonaws.com"