-
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
Fix wrong outputs of aws_dx_connection #30385
Conversation
Community NoteVoting for Prioritization
For Submitters
|
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 🚀.
% make testacc TESTARGS='-run=TestAccDirectConnectConnection_\|TestAccDirectConnectConnectionDataSource_' PKG=directconnect ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/directconnect/... -v -count 1 -parallel 2 -run=TestAccDirectConnectConnection_\|TestAccDirectConnectConnectionDataSource_ -timeout 180m
=== RUN TestAccDirectConnectConnectionDataSource_basic
=== PAUSE TestAccDirectConnectConnectionDataSource_basic
=== RUN TestAccDirectConnectConnection_basic
=== PAUSE TestAccDirectConnectConnection_basic
=== RUN TestAccDirectConnectConnection_disappears
=== PAUSE TestAccDirectConnectConnection_disappears
=== RUN TestAccDirectConnectConnection_encryptionMode
connection_test.go:87: Environment variable DX_CONNECTION_ID is not set
--- SKIP: TestAccDirectConnectConnection_encryptionMode (0.00s)
=== RUN TestAccDirectConnectConnection_macsecRequested
=== PAUSE TestAccDirectConnectConnection_macsecRequested
=== RUN TestAccDirectConnectConnection_providerName
=== PAUSE TestAccDirectConnectConnection_providerName
=== RUN TestAccDirectConnectConnection_skipDestroy
=== PAUSE TestAccDirectConnectConnection_skipDestroy
=== RUN TestAccDirectConnectConnection_tags
=== PAUSE TestAccDirectConnectConnection_tags
=== CONT TestAccDirectConnectConnectionDataSource_basic
=== CONT TestAccDirectConnectConnection_tags
--- PASS: TestAccDirectConnectConnectionDataSource_basic (27.07s)
=== CONT TestAccDirectConnectConnection_providerName
--- PASS: TestAccDirectConnectConnection_providerName (34.84s)
=== CONT TestAccDirectConnectConnection_disappears
=== CONT TestAccDirectConnectConnection_macsecRequested
--- PASS: TestAccDirectConnectConnection_tags (76.63s)
--- PASS: TestAccDirectConnectConnection_disappears (24.31s)
=== CONT TestAccDirectConnectConnection_basic
--- PASS: TestAccDirectConnectConnection_macsecRequested (32.37s)
=== CONT TestAccDirectConnectConnection_skipDestroy
--- PASS: TestAccDirectConnectConnection_basic (31.08s)
--- PASS: TestAccDirectConnectConnection_skipDestroy (24.86s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/directconnect 144.243s
@posquit0 Thanks for the contribution 🎉 👏. |
@ewbankkit Thank you for helping my issue! But, |
@posquit0 The only API structure field applicable to |
This functionality has been released in v4.63.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. Thank you! |
@ewbankkit As mentioned above, the output from |
@ewbankkit Leave a comment because I think you missed it. |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
Description
aws_dx_connection
resource andaws_dx_connection
data source doesn't returnprovider_name
andvlan_id
outputs.Following is output from
aws-cli
.Relations
Closes #0000
References
Connection
Object Spec for DirectConnect inaws-sdk-go
Output from Acceptance Testing