I have two aws profiles in my config file like below
[profile projet]
region = us-east-1
output = json
[profile accPersonal]
region = us-east-1
output = json
and their respective credential files like below
[accPersonal]
aws_access_key_id = key_id
aws_secret_access_key = access_key
[projet]
aws_access_key_id = key_id
aws_secret_access_key = access_key
When I try to launch a sceptre create from command line
sceptre create dev/api-gateway/admin-key.yaml
I get the following error
ERROR : "Session credentials were not found. Profile: None. Region: us-east-1."
I used this command before multiple times to create resources in aws using sceptre and never had this issue, checked in the aws docs for configuring profiles, the configuration looks correct and I dont seem to understand why am getting that error