Hello, anyone knows a good way to implement this? ...
# general
m
Hello, anyone knows a good way to implement this?
Copy code
import * as aws from '@pulumi/aws'
import * as pulumi from '@pulumi/pulumi'

const failuresBackupBucketName = pulumi.output(
    aws.ssm.getParameter({ name: "/s3/bucket/failuresBackup" })
)

export const failuresBackupBucket = aws.s3.getBucket({
    bucket: failuresBackupBucketName.value
})