I'm prepping for a little demo in a few days, and ...
# general
l
I'm prepping for a little demo in a few days, and using providers I haven't used before. The synced-folder provider is giving me a little trouble: my AWS provider is using a named profile, but I can't specify that in the synced-folder provider, so it's always failing when I used
managedObjects: false
, because the command (
aws sync...
) isn't specifying
--profile <myprofile>
. I presume that there's no way around this and I should either use
managedObjects: true
, or sync the files myself? It's not hard to sync the files, I'm just checking that my understanding is correct.
😲 1
f
kinda sounds like github.com/pulumi/pulumi-synced-folder/issues/50 / github.com/pulumi/pulumi-synced-folder/issues/65.
managedObjects
seems like the easiest approach, or you could use a
Command
to do the
aws s3 sync
and pass in
AWS_PROFILE
l
Yes, same issue; if the creds were passed from the provider to the command line, it would work.