orange-salesclerk-87964
09/03/2025, 3:46 PMpulumi/actions@v6
) pulumi preview --refresh --exec-agent pulumi/actions@v6 --color auto --exec-kind auto.local --event-log /tmp/automation-logs-preview-jPRIR1/eventlog.txt --stack dev --non-interactive
heres one error
docker-build:index:Image (backend-base):
warning: failed to get manifest <REMOVED>.<http://dkr.ecr.us-west-2.amazonaws.com/<name>:<tag>@<sha|dkr.ecr.us-west-2.amazonaws.com/<name>:<tag>@<sha>>: request failed: unauthorized [http 403]: {"errors":[{"code":"DENIED","message":"Your authorization token has expired. Reauthenticate and try again."}]}
This was running fine last week, but the long weekend exposed this interesting issue.
FWIW, ive had the same problems with RDS root creds noted here lively-crayon-44649
09/03/2025, 4:17 PM--run-program
is probably what you want -- without it, refresh
just looks at your state, which means eventually the credentials will expire. With it, Pulumi will run your program again, which will generate a new set of credentials for your provider etc.orange-salesclerk-87964
09/03/2025, 4:18 PMlively-crayon-44649
09/03/2025, 4:20 PMlively-crayon-44649
09/03/2025, 4:21 PMorange-salesclerk-87964
09/03/2025, 4:27 PM