-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
Cloudfront Distribution changes ForwardedValues Headers for Behaviours #7867
Comments
Tried a downgrade of the AWS provider to apply output (apparently no actual change to the distribution, way to quick for that)
state afterwards
Hence, there's also a diff for each plan, but at least the apply doesn't do a full cloudfront distribution deployment now. |
Some information that might be helpful. This appears to be an issue with ordering of the item lists not matching up with what was specified, and we're seeing it with both the cookie list and header forward values. If we have four values applied to cookie name whitelist, e.g. Terraform.tfstate prior to the change shows:
After re-ordering them in our .tf file and applying, shows:
and from that point on it will run without trying to make any changes. But if we adjust our order in our .tf file, it will continue to try to put them back to the order with MSISAuth first. |
I this an AWS provider issue or a terraform issue? |
@yardensachs this is an issue in the Terraform AWS Provider where the resource is expecting explicit ordering while the API does not. We are planning on addressing this once #8116 is merged. |
…che behavior forwarded values `headers` and cookies `whitelisted_names` arguments Reference: #7867 Output from acceptance testing prior to code updates: ``` --- FAIL: TestAccAWSCloudFrontDistribution_DefaultCacheBehavior_ForwardedValues_Cookies_WhitelistedNames (528.44s) testing.go:538: Step 0 error: After applying this step, the plan was not empty: DIFF: UPDATE: aws_cloudfront_distribution.test default_cache_behavior.0.forwarded_values.0.cookies.0.whitelisted_names.0: "test1" => "test2" default_cache_behavior.0.forwarded_values.0.cookies.0.whitelisted_names.1: "test2" => "test3" default_cache_behavior.0.forwarded_values.0.cookies.0.whitelisted_names.2: "test3" => "test1" --- FAIL: TestAccAWSCloudFrontDistribution_DefaultCacheBehavior_ForwardedValues_Headers (528.49s) testing.go:538: Step 0 error: After applying this step, the plan was not empty: DIFF: UPDATE: aws_cloudfront_distribution.test default_cache_behavior.0.forwarded_values.0.headers.0: "Access-Control-Request-Headers" => "Origin" default_cache_behavior.0.forwarded_values.0.headers.1: "Access-Control-Request-Method" => "Access-Control-Request-Headers" default_cache_behavior.0.forwarded_values.0.headers.2: "Origin" => "Access-Control-Request-Method" --- FAIL: TestAccAWSCloudFrontDistribution_OrderedCacheBehavior_ForwardedValues_Cookies_WhitelistedNames (528.46s) testing.go:538: Step 0 error: After applying this step, the plan was not empty: DIFF: UPDATE: aws_cloudfront_distribution.test ordered_cache_behavior.0.forwarded_values.0.cookies.0.whitelisted_names.0: "test1" => "test2" ordered_cache_behavior.0.forwarded_values.0.cookies.0.whitelisted_names.1: "test2" => "test3" ordered_cache_behavior.0.forwarded_values.0.cookies.0.whitelisted_names.2: "test3" => "test1" --- FAIL: TestAccAWSCloudFrontDistribution_OrderedCacheBehavior_ForwardedValues_Headers (528.43s) testing.go:538: Step 0 error: After applying this step, the plan was not empty: DIFF: UPDATE: aws_cloudfront_distribution.test ordered_cache_behavior.0.forwarded_values.0.headers.0: "Access-Control-Request-Headers" => "Origin" ordered_cache_behavior.0.forwarded_values.0.headers.1: "Access-Control-Request-Method" => "Access-Control-Request-Headers" ordered_cache_behavior.0.forwarded_values.0.headers.2: "Origin" => "Access-Control-Request-Method" ``` Output from acceptance testing: ``` --- PASS: TestAccAWSCloudFrontDistribution_Origin_EmptyOriginID (2.56s) --- PASS: TestAccAWSCloudFrontDistribution_Origin_EmptyDomainName (2.56s) --- PASS: TestAccAWSCloudFrontDistribution_OrderedCacheBehavior_ForwardedValues_Cookies_WhitelistedNames (543.49s) --- PASS: TestAccAWSCloudFrontDistribution_DefaultCacheBehavior_ForwardedValues_Headers (544.62s) --- PASS: TestAccAWSCloudFrontDistribution_OrderedCacheBehavior_ForwardedValues_Headers (546.32s) --- PASS: TestAccAWSCloudFrontDistribution_disappears (550.45s) --- PASS: TestAccAWSCloudFrontDistribution_DefaultCacheBehavior_ForwardedValues_Cookies_WhitelistedNames (580.39s) --- PASS: TestAccAWSCloudFrontDistribution_IsIPV6EnabledConfig (1173.77s) --- PASS: TestAccAWSCloudFrontDistribution_RetainOnDelete (1178.86s) --- PASS: TestAccAWSCloudFrontDistribution_orderedCacheBehavior (1181.80s) --- PASS: TestAccAWSCloudFrontDistribution_noCustomErrorResponseConfig (1183.92s) --- PASS: TestAccAWSCloudFrontDistribution_customOrigin (1270.14s) --- PASS: TestAccAWSCloudFrontDistribution_S3Origin (1270.44s) --- PASS: TestAccAWSCloudFrontDistribution_OriginGroups (1268.27s) --- PASS: TestAccAWSCloudFrontDistribution_noOptionalItemsConfig (1271.35s) --- PASS: TestAccAWSCloudFrontDistribution_multiOrigin (1272.23s) --- PASS: TestAccAWSCloudFrontDistribution_WaitForDeployment (1269.96s) --- PASS: TestAccAWSCloudFrontDistribution_HTTP11Config (1275.52s) --- PASS: TestAccAWSCloudFrontDistribution_ViewerCertificate_AcmCertificateArn (1276.02s) --- PASS: TestAccAWSCloudFrontDistribution_ViewerCertificate_AcmCertificateArn_ConflictsWithCloudFrontDefaultCertificate (1284.86s) --- PASS: TestAccAWSCloudFrontDistribution_Enabled (1736.60s) --- PASS: TestAccAWSCloudFrontDistribution_S3OriginWithTags (1886.36s) ```
Pull request submitted: #8150 |
The fix to ignore ordering for |
Thanks for your work on this @bflad! |
Thanks @bflad! |
This has been released in version 2.5.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. |
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! |
Community Note
Terraform Version
Terraform v0.11.11
Affected Resource(s)
AWS Provider version: 2.1.0
Terraform Configuration Files
Expected Behavior
A clean diff, since the code wasn't changed.
Actual Behavior
There's always a diff for the
forwarwarded values headers
:Steps to Reproduce
terraform plan
terraform apply
terraform plan
The text was updated successfully, but these errors were encountered: