-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.deploy.example
More file actions
44 lines (32 loc) · 1.37 KB
/
Copy path.env.deploy.example
File metadata and controls
44 lines (32 loc) · 1.37 KB
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
# Optivue Phase 8 deployment environment template
# Copy to .env.deploy and fill values from CDK stack outputs after deploy.
# Never commit .env.deploy (it is git-ignored; this example file is safe to commit).
#
# --- How to populate after `cdk deploy --all` ---
# Each variable notes which CloudFormation output to copy from.
# Run: npx cdk ls --outputs-file outputs.json (in src/infra)
# Then read outputs.json to find the values below.
AWS_REGION=us-east-1
# From: FinOpsAgent > SupervisorAgentId
BEDROCK_AGENT_ID=
# Create an alias in Bedrock console after agent deploys (Aliases tab > Create alias)
# or: aws bedrock-agent create-agent-alias --agent-id <BEDROCK_AGENT_ID> --agent-alias-name prod
BEDROCK_AGENT_ALIAS_ID=
# From: FinOpsFoundation > CognitoPool > UserPoolId
COGNITO_USER_POOL_ID=
# From: FinOpsFoundation > CognitoPool > UserPoolClientId
COGNITO_CLIENT_ID=
# Static — matches data-stack Glue database name
ATHENA_DATABASE=finops_cost_db
# Static — matches data-stack Athena workgroup name
ATHENA_WORKGROUP=finops-primary
# From: FinOpsData > CostExportsBucketName
COST_EXPORT_S3_BUCKET=
# From: FinOpsData > AthenaResultsBucketName
ATHENA_RESULTS_S3_BUCKET=
# Your Jira instance URL (e.g. https://yourcompany.atlassian.net)
JIRA_BASE_URL=
# From: FinOpsWorkflow > StateMachineArn
STEP_FUNCTIONS_ARN=
# Set to true only for local demos / evaluation runs
DEMO_MODE=false