Terraform-provider-aws: Support configurable TLS Version for Custom Domains - AWS API Gateway

Created on 24 Jun 2019  ·  5Comments  ·  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 "me too" comments, 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

AWS announced configurable Transport Layer Security Version for Custom Domains in AWS API Gateway

New or Affected Resource(s)

API Gateway

  • aws_api_gateway_domain_name

Potential Terraform Configuration

resource "aws_api_gateway_domain_name" "example" {
  domain_name              = "api.example.com"
  regional_certificate_arn = "${aws_acm_certificate_validation.example.certificate_arn}"
  security_policy          = "TLSv1.2"

  endpoint_configuration {
    types = ["REGIONAL"]
  }
}

References

  • https://aws.amazon.com/de/about-aws/whats-new/2019/06/amazon-api-gateway-adds-configurable-transport-layer-security-version-custom-domains/

  • enhancement servicapigateway

    Most helpful comment

    Support for the new security_policy argument for the aws_api_gateway_domain_name resource has been merged and will release with version 2.20.0 of the Terraform AWS Provider, later this week. 👍 Thanks to @stack72!

    All 5 comments

    Is #9084 bumped? (I'm not sure what that means!)

    @ra-hardy I think when I wrote that comment Renovate Bot hadn't bumped the AWS SDK version in the then open PR. Anyway, the minimum required AWS SDK version is now merged; The functionality you required is implemented in https://github.com/terraform-providers/terraform-provider-aws/pull/9128 which has yet to be merged.

    Support for the new security_policy argument for the aws_api_gateway_domain_name resource has been merged and will release with version 2.20.0 of the Terraform AWS Provider, later this week. 👍 Thanks to @stack72!

    I'm going to lock this issue because it has been closed for _30 days_ ⏳. This helps our maintainers find and focus on the active issues.

    If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!

    Was this page helpful?
    0 / 5 - 0 ratings