Can pulumi manage S3 Intelligent-Tiering configura...
# aws
a
Can pulumi manage S3 Intelligent-Tiering configuration (ie configuring the transition to
ARCHIVE
and
DEEP_ARCHIVE
( https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketIntelligentTieringConfiguration.html )
f
@ambitious-afternoon-55254 I think you’re looking for
pulumi_aws.s3control.BucketLifecycleConfiguration
? https://www.pulumi.com/docs/reference/pkg/aws/s3control/bucketlifecycleconfiguration/
a
Thanks — but I don’t think this is the right thing. In S3 you set the bucket lifecycle configuration to active Intelligent Tiering — and then you have to separately configure Intelligent Tiering to active ARCHIVE/DEEP_ARCHIVE for those objects. In S3 console it’s a completely separate section of the UI. Separate API as well.
f
@ambitious-afternoon-55254 Ah, you’re right. Digging further, this isn’t currently supported by Terraform (upstream to Pulumi for AWS): https://github.com/hashicorp/terraform-provider-aws/issues/16123 However, it appears somehow has recently opened a PR to terraform-aws to add this feature: https://github.com/hashicorp/terraform-provider-aws/pull/20329