-
Notifications
You must be signed in to change notification settings - Fork 9.2k
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
r/aws_api_gateway_rest_api - fix vpc endpoint updates #12350
Conversation
Verified acceptance test: $ make testacc TEST=./aws/ TESTARGS='-run=TestAccAWSAPIGatewayRestApi_EndpointConfiguration_VPCEndpoint'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./aws/ -v -count 1 -parallel 20 -run=TestAccAWSAPIGatewayRestApi_EndpointConfiguration_VPCEndpoint -timeout 120m
=== RUN TestAccAWSAPIGatewayRestApi_EndpointConfiguration_VPCEndpoint
=== PAUSE TestAccAWSAPIGatewayRestApi_EndpointConfiguration_VPCEndpoint
=== CONT TestAccAWSAPIGatewayRestApi_EndpointConfiguration_VPCEndpoint
--- PASS: TestAccAWSAPIGatewayRestApi_EndpointConfiguration_VPCEndpoint (368.50s)
PASS
ok github.com/terraform-providers/terraform-provider-aws/aws 368.541s |
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.
Looks good, thanks for this fix, @DrFaust92 🚀 For the CHANGELOG entry we'll put something along the lines of:
* resource/aws_api_gateway_rest_api: Ignore ordering differences for `endpoint_configuration` configuration block `vpc_endpoint_ids` argument
Output from acceptance testing:
--- PASS: TestAccAWSAPIGatewayRestApi_policy (63.79s)
--- PASS: TestAccAWSAPIGatewayRestApi_openapi (107.95s)
--- PASS: TestAccAWSAPIGatewayRestApi_tags (136.84s)
--- PASS: TestAccAWSAPIGatewayRestApi_EndpointConfiguration (198.10s)
--- PASS: TestAccAWSAPIGatewayRestApi_basic (253.35s)
--- PASS: TestAccAWSAPIGatewayRestApi_api_key_source (370.96s)
--- PASS: TestAccAWSAPIGatewayRestApi_EndpointConfiguration_VPCEndpoint (379.97s)
--- PASS: TestAccAWSAPIGatewayRestApi_EndpointConfiguration_Private (387.07s)
--- PASS: TestAccAWSAPIGatewayRestApi_disappears (508.50s)
This has been released in version 2.54.0 of the Terraform AWS provider. Please see the Terraform documentation on provider versioning or reach out if you need any assistance upgrading. For further feature requests or bug reports with this functionality, please create a new GitHub issue following the template for triage. Thanks! |
… configured APIs Reference: #12350 Reference: #8223 Previously: ``` TestAccDataSourceAwsApiGatewayRestApi_EndpointConfiguration_VpcEndpointIds: testing.go:669: Step 0 error: errors during apply: Error: error setting endpoint_configuration: endpoint_configuration.0.vpc_endpoint_ids: '': source data must be an array or slice, got struct on /var/folders/w8/05f3x02n27x72g0mc2jy6_180000gp/T/tf-test660234204/main.tf line 62: (source code not available) ``` Output from acceptance testing: ``` --- PASS: TestAccDataSourceAwsApiGatewayRestApi_basic (18.71s) --- PASS: TestAccDataSourceAwsApiGatewayRestApi_EndpointConfiguration_VpcEndpointIds (151.75s) --- PASS: TestAccAWSAPIGatewayRestApi_tags (66.14s) --- PASS: TestAccAWSAPIGatewayRestApi_EndpointConfiguration (89.86s) --- PASS: TestAccAWSAPIGatewayRestApi_disappears (118.54s) --- PASS: TestAccAWSAPIGatewayRestApi_api_key_source (187.17s) --- PASS: TestAccAWSAPIGatewayRestApi_openapi (239.32s) --- PASS: TestAccAWSAPIGatewayRestApi_EndpointConfiguration_VPCEndpoint (370.75s) --- PASS: TestAccAWSAPIGatewayRestApi_policy (459.60s) --- PASS: TestAccAWSAPIGatewayRestApi_basic (505.99s) --- PASS: TestAccAWSAPIGatewayRestApi_EndpointConfiguration_Private (690.91s) ```
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
Closes #12210
Release note for CHANGELOG:
Output from acceptance testing: