AWS Context
What
Display the currently active AWS profile and region.
The segment reads ~/.aws/config (or AWS_CONFIG_FILE) and ~/.aws/credentials
(or AWS_SHARED_CREDENTIALS_FILE). Every key/value pair from the active
profile is exposed via the .Settings map so any AWS-recognized setting
can be referenced from a template — see AWS configuration keys.
Sample Configuration
- json
- yaml
- toml
{
"type": "aws",
"style": "powerline",
"powerline_symbol": "",
"foreground": "#ffffff",
"background": "#FFA400",
"template": " {{.Profile}}{{if .Region}}@{{.Region}}{{end}}"
}
type: aws
style: powerline
powerline_symbol:
foreground: "#ffffff"
background: "#FFA400"
template: " {{.Profile}}{{if .Region}}@{{.Region}}{{end}}"
type = "aws"
style = "powerline"
powerline_symbol = ""
foreground = "#ffffff"
background = "#FFA400"
template = " {{.Profile}}{{if .Region}}@{{.Region}}{{end}}"
Options
| Name | Type | Default | Description |
|---|---|---|---|
display_default | boolean | true | display the segment when default user or not |
Template (info)
{{ .Profile }}{{ if .Region }}@{{ .Region }}{{ end }}
Properties
| Name | Type | Description |
|---|---|---|
.Profile | string | the currently active profile |
.Region | string | the currently active region |
.RegionAlias | string | short alias for the currently active region |
.AccountID | string | account id of the active profile (sso_account_id preferred, else aws_account_id) |
.AccessKeyID | string | access key id of the active profile |
.Settings | map[string]string | every key/value pair from the active profile (config + credentials, credentials wins on dup) |
.SSOSession | map[string]string | every key/value pair from the [sso-session <name>] section referenced by the profile |
Access individual settings via {{ index .Settings "<key>" }} (or
{{ .Settings.<key> }} for keys that are valid Go identifiers, e.g.
{{ .Settings.sso_role_name }}).
Examples
{{ .Profile }}{{ if .Region }}@{{ .Region }}{{ end }}{{ with index .Settings "sso_role_name" }} ({{ . }}){{ end }}
{{ .Profile }} {{ .AccountID }}/{{ index .Settings "sso_role_name" }}
{{ .Profile }} via {{ index .SSOSession "sso_start_url" }}
AWS configuration keys
The keys below are the ones AWS SDKs and the AWS CLI recognize in the shared
config and credentials files. Any of them, when present in the active profile
section, is available through .Settings. Keys defined in a referenced
[sso-session <name>] section are available through .SSOSession.
Credentials
aws_access_key_id, aws_secret_access_key, aws_session_token, aws_account_id
IAM Identity Center (SSO)
sso_session, sso_account_id, sso_role_name, sso_region, sso_start_url,
sso_registration_scopes
Assume role
role_arn, role_session_name, source_profile, external_id, mfa_serial,
duration_seconds, web_identity_token_file, credential_process,
credential_source
Region & endpoints
region, endpoint_url, ignore_configured_endpoint_urls,
sts_regional_endpoints, use_fips_endpoint, use_dualstack_endpoint,
account_id_endpoint_mode
S3
s3_use_arn_region, s3_disable_multiregion_access_points,
s3_disable_express_session_auth
EC2 / IMDS
ec2_metadata_service_endpoint, ec2_metadata_service_endpoint_mode,
ec2_metadata_v1_disabled, metadata_service_num_attempts,
metadata_service_timeout
Retry & request handling
max_attempts, retry_mode, disable_request_compression,
request_min_compression_size_bytes, request_checksum_calculation,
response_checksum_validation
Auth & signing
auth_scheme_preference, sigv4a_signing_region_set
General
output, parameter_validation, defaults_mode, api_versions,
ca_bundle, tcp_keepalive, endpoint_discovery_enabled,
disable_host_prefix_injection, sdk_ua_app_id
CLI-only
cli_pager, cli_history, cli_timestamp_format, cli_binary_format,
cli_auto_prompt, cli_follow_urlparam