...

Text file src/github.com/aws/aws-sdk-go-v2/config/testdata/config_source_shared

Documentation: github.com/aws/aws-sdk-go-v2/config/testdata

     1[profile env_var_credential_source]
     2role_arn = assume_role_w_creds_role_arn_env
     3credential_source = Environment
     4
     5[profile invalid_source_and_credential_source]
     6role_arn = assume_role_w_creds_role_arn_bad
     7credential_source = Environment
     8source_profile = env_var_credential_source
     9
    10[profile ec2metadata]
    11role_arn = assume_role_w_creds_role_arn_ec2
    12credential_source = Ec2InstanceMetadata
    13
    14[profile ecscontainer]
    15role_arn = assume_role_w_creds_role_arn_ecs
    16credential_source = EcsContainer
    17
    18[profile chained_assume_role]
    19role_arn = assume_role_w_creds_role_arn_chain
    20source_profile = ec2metadata
    21
    22[profile cred_proc_no_arn_set]
    23credential_process = cat ./testdata/test_json.json
    24
    25[profile cred_proc_arn_set]
    26role_arn = assume_role_w_creds_proc_role_arn
    27credential_process = cat ./testdata/test_json.json
    28
    29[profile chained_cred_proc]
    30role_arn = assume_role_w_creds_proc_source_prof
    31source_profile = cred_proc_no_arn_set
    32
    33[profile credentials_overide]
    34role_arn = assume_role_w_creds_role_arn_ec2
    35credential_source = Ec2InstanceMetadata
    36
    37[profile sso_creds]
    38sso_account_id = 012345678901
    39sso_region = us-west-2
    40sso_role_name = TestRole
    41sso_start_url = https://127.0.0.1/start
    42
    43[profile source_sso_creds]
    44role_arn = source_sso_creds_arn
    45source_profile = sso_creds
    46
    47[profile assume_sso_and_static]
    48role_arn = assume_sso_and_static_arn
    49source_profile = sso_and_static
    50
    51[profile sso_and_static]
    52aws_access_key_id = sso_and_static_akid
    53aws_secret_access_key = sso_and_static_secret
    54aws_session_token = sso_and_static_token
    55sso_account_id = 012345678901
    56sso_region = us-west-2
    57sso_role_name = TestRole
    58sso_start_url = https://THIS_SHOULD_NOT_BE_IN_TESTDATA_CACHE/start
    59
    60[profile sso_invalid]
    61sso_account_id = 012345678901
    62sso_role_name = TestRole
    63
    64[profile sso_mixed_credproc]
    65sso_account_id = 012345678901
    66sso_region = us-west-2
    67sso_role_name = TestRole
    68sso_start_url = https://127.0.0.1/start
    69credential_process = cat ./testdata/test_json.json
    70
    71[profile sso_mixed_webident]
    72web_identity_token_file = ./testdata/wit.txt
    73role_arn = sso_mixed_webident_arn
    74sso_account_id = 012345678901
    75sso_region = us-west-2
    76sso_role_name = TestRole
    77sso_start_url = https://127.0.0.1/start
    78
    79[profile sso-session-missing-region]
    80region = us-east-1
    81sso_session = sso-session-missing-region-dev
    82sso_account_id = 123456789012
    83sso_role_name = testRole
    84
    85[sso-session sso-session-missing-region-dev]
    86sso_start_url = https://d-123456789a.awsapps.com/start
    87
    88[profile sso-session-mismatched-region]
    89sso_session = sso-session-mismatched-region-dev
    90sso_region = us-east-1
    91sso_account_id = 123456789012
    92sso_role_name = testRole
    93
    94[sso-session sso-session-mismatched-region-dev]
    95sso_start_url = https://d-123456789a.awsapps.com/start
    96sso_region = us-west-2
    97
    98[profile webident]
    99web_identity_token_file = ./testdata/wit.txt
   100role_arn = webident_arn
   101
   102[profile webident-partial]
   103web_identity_token_file = ./testdata/wit.txt

View as plain text