Terraform-provider-aws: Amazon CloudFront Origin Shield

Created on 21 Oct 2020  路  3Comments  路  Source: hashicorp/terraform-provider-aws

Community Note

  • Please vote on this issue by adding a 馃憤 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Amazon CloudFront announces Origin Shield.

New or Affected Resource(s)

Potential Terraform Configuration

resource "aws_cloudfront_distribution" "example" {
  origin {
    origin_shield {
      enabled = true

      origin_shield_region = "eu-west-2"
    }
  }
}

References

Announcement.

Requires AWS SDK v1.35.10:

enhancement serviccloudfront

Most helpful comment

@philnichol The AWS SDK merge will be done independently - I'll try and move that along.

All 3 comments

@ewbankkit mind if I have a crack at this?

Cheers @ewbankkit! Apologies if it's a silly question, but since it requires AWS SDK v1.35.10 would I update the version as part of this PR? Or would that normally be left to a separate PR of it's own? Obviously will still test locally with 1.35.10

@philnichol The AWS SDK merge will be done independently - I'll try and move that along.

Was this page helpful?
0 / 5 - 0 ratings