-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
Migrate appflow
resources to AWS SDK for Go v2
#34456
Conversation
% make testacc TESTARGS='-run=TestAccAppFlow' PKG=appflow ACCTEST_PARALLELISM=2 ==> Checking that code complies with gofmt requirements... TF_ACC=1 go test ./internal/service/appflow/... -v -count 1 -parallel 2 -run=TestAccAppFlow -timeout 360m === RUN TestAccAppFlowConnectorProfile_basic === PAUSE TestAccAppFlowConnectorProfile_basic === RUN TestAccAppFlowConnectorProfile_update === PAUSE TestAccAppFlowConnectorProfile_update === RUN TestAccAppFlowConnectorProfile_disappears === PAUSE TestAccAppFlowConnectorProfile_disappears === RUN TestAccAppFlowFlow_basic === PAUSE TestAccAppFlowFlow_basic === RUN TestAccAppFlowFlow_S3_outputFormatConfig_ParquetFileType === PAUSE TestAccAppFlowFlow_S3_outputFormatConfig_ParquetFileType === RUN TestAccAppFlowFlow_update === PAUSE TestAccAppFlowFlow_update === RUN TestAccAppFlowFlow_TaskProperties === PAUSE TestAccAppFlowFlow_TaskProperties === RUN TestAccAppFlowFlow_tags === PAUSE TestAccAppFlowFlow_tags === RUN TestAccAppFlowFlow_disappears === PAUSE TestAccAppFlowFlow_disappears === CONT TestAccAppFlowConnectorProfile_basic === CONT TestAccAppFlowFlow_update --- PASS: TestAccAppFlowFlow_update (68.54s) === CONT TestAccAppFlowFlow_tags --- PASS: TestAccAppFlowFlow_tags (93.31s) === CONT TestAccAppFlowFlow_disappears --- PASS: TestAccAppFlowFlow_disappears (47.14s) === CONT TestAccAppFlowFlow_TaskProperties --- PASS: TestAccAppFlowFlow_TaskProperties (43.46s) === CONT TestAccAppFlowFlow_basic --- PASS: TestAccAppFlowConnectorProfile_basic (260.16s) === CONT TestAccAppFlowFlow_S3_outputFormatConfig_ParquetFileType --- PASS: TestAccAppFlowFlow_basic (46.55s) === CONT TestAccAppFlowConnectorProfile_disappears --- PASS: TestAccAppFlowFlow_S3_outputFormatConfig_ParquetFileType (64.12s) === CONT TestAccAppFlowConnectorProfile_update --- PASS: TestAccAppFlowConnectorProfile_disappears (253.33s) --- PASS: TestAccAppFlowConnectorProfile_update (328.58s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/appflow 658.891s
Community NoteVoting for Prioritization
For Submitters
|
Thank you for your contribution! 🚀 A new usage of AWS SDK for Go V1 was detected. Please prefer AWS SDK for Go V2 for all net-new services. If this is an enhancement or bug fix to an existing AWS SDK Go V1 based resource, this comment can be safely ignored. For additional information refer to the AWS SDK for Go Versions page in the contributor guide. |
After fixes: % make testacc TESTARGS='-run=TestAccAppFlowFlow_' PKG=appflow ACCTEST_PARALLELISM=2
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./internal/service/appflow/... -v -count 1 -parallel 2 -run=TestAccAppFlowFlow_ -timeout 360m
=== RUN TestAccAppFlowFlow_basic
=== PAUSE TestAccAppFlowFlow_basic
=== RUN TestAccAppFlowFlow_S3_outputFormatConfig_ParquetFileType
=== PAUSE TestAccAppFlowFlow_S3_outputFormatConfig_ParquetFileType
=== RUN TestAccAppFlowFlow_update
=== PAUSE TestAccAppFlowFlow_update
=== RUN TestAccAppFlowFlow_taskProperties
=== PAUSE TestAccAppFlowFlow_taskProperties
=== RUN TestAccAppFlowFlow_taskUpdate
=== PAUSE TestAccAppFlowFlow_taskUpdate
=== RUN TestAccAppFlowFlow_tags
=== PAUSE TestAccAppFlowFlow_tags
=== RUN TestAccAppFlowFlow_disappears
=== PAUSE TestAccAppFlowFlow_disappears
=== CONT TestAccAppFlowFlow_basic
=== CONT TestAccAppFlowFlow_taskUpdate
--- PASS: TestAccAppFlowFlow_basic (53.17s)
=== CONT TestAccAppFlowFlow_update
--- PASS: TestAccAppFlowFlow_taskUpdate (72.56s)
=== CONT TestAccAppFlowFlow_taskProperties
--- PASS: TestAccAppFlowFlow_taskProperties (46.72s)
=== CONT TestAccAppFlowFlow_S3_outputFormatConfig_ParquetFileType
--- PASS: TestAccAppFlowFlow_update (69.65s)
=== CONT TestAccAppFlowFlow_disappears
--- PASS: TestAccAppFlowFlow_disappears (45.97s)
=== CONT TestAccAppFlowFlow_tags
--- PASS: TestAccAppFlowFlow_S3_outputFormatConfig_ParquetFileType (67.64s)
--- PASS: TestAccAppFlowFlow_tags (91.10s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/appflow 265.702s |
This functionality has been released in v5.27.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! |
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
Migrates
appflow
resources to AWS SDK for Go v2.Relations
Closes #26491.
Closes #28237.
Output from Acceptance Testing