Current section
Files
Jump to
Current section
Files
priv/templates/config/aws/aws_base.ex
# aws
config :ex_aws,
region: "us-east-1",
access_key_id: [{:system, "AWS_ACCESS_KEY_ID"}, {:awscli, "default", 30}, :instance_role],
secret_access_key: [
{:system, "AWS_SECRET_ACCESS_KEY"},
{:awscli, "default", 30},
:instance_role
],
awscli_auth_adapter: ExAws.STS.AuthCache.AssumeRoleCredentialsAdapter
# to override aws endpoint for localstack
#config :ex_aws, :secretsmanager, # change for specific service
# scheme: "http://",
# host: "localhost",
# port: 4566