victorious-wall-1075
02/17/2022, 5:02 PM[default]
aws_access_key_id = MyKey
aws_secret_access_key = MySecret
[minio]
aws_access_key_id = minioadmin
aws_secret_access_key = minioadmin
I am setting AWS_PROFILE=minio so the backend can use the minio profile.
However, this collides with AWS operations as pulimi tries to use the same key with AWS and fails.. If set the profile to default the backend calls fail.. How do I get around this?limited-rainbow-51650
02/17/2022, 5:30 PMprofile
explicitely if you create a provider in your code for the EC2 resources: https://www.pulumi.com/registry/packages/aws/api-docs/provider/
Use the environment variables to let pulumi pick up the credentials for the minio backend.victorious-wall-1075
02/18/2022, 4:20 AM