You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is unfortunate as now we have to hardcode the secretAccessKey when using the aws.Provider
constbucketDomain=`s3.${REGION_SHORTNAME_LOWERCASE}.io.cloud.ovh.net`;constawsProviderClassic=newaws_classic.Provider("aws",{accessKey: newUserS3Credentials.accessKeyId,secretKey: newUserS3Credentials.secretAccessKey,skipRegionValidation: true,skipCredentialsValidation: true,skipRequestingAccountId: true,skipMetadataApiCheck: true,region: REGION_SHORTNAME_LOWERCASEasaws_classic.Region,endpoints: [{s3: `https://${bucketDomain}`,s3api: `https://${bucketDomain}`,},],});// We do use the classic provider as ovh does not implement// buckets yet in the native provider.// https://github.com/pulumi/pulumi-aws-native/issues/108constbucketS3=newaws_classic.s3.BucketV2("shared-storage",{},{provider: awsProviderClassic},);
Until recently, everything was fine. Now, the
S3Credential
property returns an empty string for thesecretAccessKey
property.Doing
pulumi up
, printsThis is unfortunate as now we have to hardcode the
secretAccessKey
when using theaws.Provider
Which fails due to
secretAccessKey
missing withThe text was updated successfully, but these errors were encountered: