-
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
Appflow flow status #37501
base: main
Are you sure you want to change the base?
Appflow flow status #37501
Conversation
… creating appflow resource
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.
Welcome @Viriathus1 👋
It looks like this is your first Pull Request submission to the Terraform AWS Provider! If you haven’t already done so please make sure you have checked out our CONTRIBUTOR guide and FAQ to make sure your contribution is adhering to best practice and has all the necessary elements in place for a successful approval.
Also take a look at our FAQ which details how we prioritize Pull Requests for inclusion.
Thanks again, and welcome to the community! 😃
Output from updated Acceptance Testing% make testacc TESTARGS='-run=TestAccAppFlowFlow_update' PKG=appflow
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.2 test ./internal/service/appflow/... -v -count 1 -parallel 20 -run=TestAccAppFlowFlow_update -timeout 360m
=== RUN TestAccAppFlowFlow_update
=== PAUSE TestAccAppFlowFlow_update
=== CONT TestAccAppFlowFlow_update
--- PASS: TestAccAppFlowFlow_update (46.52s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/appflow 53.445s % make testacc TESTARGS='-run=TestAccAppFlowFlow_createWithActiveFlowStatus' PKG=appflow
make: Verifying source code with gofmt...
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go1.22.2 test ./internal/service/appflow/... -v -count 1 -parallel 20 -run=TestAccAppFlowFlow_createWithActiveFlowStatus -timeout 360m
=== RUN TestAccAppFlowFlow_createWithActiveFlowStatus
=== PAUSE TestAccAppFlowFlow_createWithActiveFlowStatus
=== CONT TestAccAppFlowFlow_createWithActiveFlowStatus
--- PASS: TestAccAppFlowFlow_createWithActiveFlowStatus (54.91s)
PASS
ok github.com/hashicorp/terraform-provider-aws/internal/service/appflow 66.626s |
Description
Following up on #34948. Allow flow status to be configurable in resource block for Scheduled or Event triggered flows. Main use case is to obviate the need to manually activate an AppFlow during resource creation and update.
Relations
Closes #36441
References
https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appflow-flow.html#cfn-appflow-flow-flowstatus
https://docs.aws.amazon.com/appflow/1.0/APIReference/API_StartFlow.html
https://docs.aws.amazon.com/appflow/1.0/APIReference/API_StopFlow.html
Output from Acceptance Testing