-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.toml
More file actions
34 lines (28 loc) · 1.01 KB
/
config.example.toml
File metadata and controls
34 lines (28 loc) · 1.01 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
# TEAM CLI configuration
# Copy to ~/.config/team-cli/config.toml and fill in your deployment values,
# or run `team configure` to set up interactively.
[cognito]
domain = "https://YOUR_DOMAIN.auth.REGION.amazoncognito.com"
client_id = "YOUR_COGNITO_CLIENT_ID"
user_pool_id = "REGION_PoolId"
identity_provider = "IDC"
scopes = ["aws.cognito.signin.user.admin", "email", "openid", "phone", "profile"]
[appsync]
endpoint = "https://YOUR_ID.appsync-api.REGION.amazonaws.com/graphql"
[aws]
region = "eu-north-1"
# Optional: only needed for `team sync`
[sync]
sso_session_name = "my-org"
sso_start_url = "https://my-org.awsapps.com/start"
sso_region = "eu-north-1"
default_region = "eu-central-1"
# Map TEAM permission set names to profile suffix
# Only listed permission sets generate AWS CLI profiles
# "" = no suffix (daily profile), "-bg" = breakglass suffix
[sync.profile_map]
ReadOnly = ""
AdministratorAccess = "-bg"
# Optional: per-account region overrides
# [sync.account_overrides.my-account-name]
# region = "us-east-1"