-
-
Notifications
You must be signed in to change notification settings - Fork 248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: handle viewer_certificate.ssl_support_method with CF default certificate #213
Conversation
/test all |
@@ -463,7 +463,7 @@ resource "aws_cloudfront_distribution" "default" { | |||
|
|||
viewer_certificate { | |||
acm_certificate_arn = var.acm_certificate_arn | |||
ssl_support_method = "sni-only" | |||
ssl_support_method = local.use_default_acm_certificate ? null : "sni-only" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does null
behave differently than ""
? in terms of how the provider validates this field?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately yes. Providing ""
results in it complaining you need to provide one of the two valid values. However sni-only
causes issues with CF-issued certificates which works fine with null
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right I believe because it's an optional value it'll be fine, but ""
is subject to the validation method https://github.com/hashicorp/terraform-provider-aws/blob/c47375e5482213883df51795322e2e2b55bc9348/internal/service/cloudfront/distribution.go#L694
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
/test terratest |
This Pull Request has been updated, so we're dismissing all reviews.
/test all |
what
ssl_support_method
tonull
when default certificate is being used instead of setting it tosni-only
in all cases.why
sni-only
) in conjunction with the "default certificate" results in the state not being idempotent.references