Skip to content
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_servicecatalog_product: New resource #19122

Merged
merged 20 commits into from
Apr 28, 2021
Merged

Conversation

YakDriver
Copy link
Member

@YakDriver YakDriver commented Apr 27, 2021

Community Note

  • Please vote on this pull request by adding a 👍 reaction to the original pull request comment to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for pull request followers and do not help prioritize the request

Closes #4980
Closes #13834
Relates #18074
Relates #15369

Output from acceptance testing (GovCloud):

--- PASS: TestAccAWSServiceCatalogProduct_disappears (28.90s)
--- PASS: TestAccAWSServiceCatalogProduct_basic (31.33s)
--- PASS: TestAccAWSServiceCatalogProduct_updateTags (51.26s)
--- PASS: TestAccAWSServiceCatalogProduct_physicalID (74.15s)

Output from acceptance testing (us-west-2):

--- PASS: TestAccAWSServiceCatalogProduct_disappears (27.32s)
--- PASS: TestAccAWSServiceCatalogProduct_basic (29.22s)
--- PASS: TestAccAWSServiceCatalogProduct_update (47.41s)
--- PASS: TestAccAWSServiceCatalogProduct_updateTags (48.00s)
--- PASS: TestAccAWSServiceCatalogProduct_physicalID (72.87s)

@YakDriver YakDriver requested a review from a team as a code owner April 27, 2021 15:09
@ghost ghost added size/XXL Managed by automation to categorize the size of a PR. documentation Introduces or discusses updates to documentation. provider Pertains to the provider itself, rather than any interaction with AWS. service/servicecatalog Issues and PRs that pertain to the servicecatalog service. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure. labels Apr 27, 2021
@ewbankkit ewbankkit self-assigned this Apr 27, 2021
defaultTagsConfig := meta.(*AWSClient).DefaultTagsConfig
ignoreTagsConfig := meta.(*AWSClient).IgnoreTagsConfig

output, err := waiter.ProductReady(conn, d.Get("accept_language").(string), d.Id())
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is waiter.ProductReady called here rather than the underlying finder-type function?

Copy link
Member Author

@YakDriver YakDriver Apr 28, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess 3 reasons. 1) There isn't a finder. Without a finder per se, the waiter is a decent finder. 2) Waiting in "read" benefits imports immediately after creation. 3) With the status/waiter/finder pattern still evolving, I'm the least sold on the merits of finders. I'm not necessarily against them but not sure they add that much until we figure out exactly how they contribute in the overall pattern. Particularly, errors need to be handled differently (mostly not found) in different contexts. The finder I like best (because it's easy to work with) so far is the one that just finds and returns errors without editorializing (changing not found to "" or a new error). If that's all it does, then why have a finder? Adding layers of complexity isn't always bad but needs a compelling reason that I've not been convinced finders present.

Copy link
Contributor

@ewbankkit ewbankkit left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 🚀.

Commercial
% make testacc TEST=./aws TESTARGS='-run=TestAccAWSServiceCatalogProduct_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSServiceCatalogProduct_ -timeout 180m
=== RUN   TestAccAWSServiceCatalogProduct_basic
=== PAUSE TestAccAWSServiceCatalogProduct_basic
=== RUN   TestAccAWSServiceCatalogProduct_disappears
=== PAUSE TestAccAWSServiceCatalogProduct_disappears
=== RUN   TestAccAWSServiceCatalogProduct_update
=== PAUSE TestAccAWSServiceCatalogProduct_update
=== RUN   TestAccAWSServiceCatalogProduct_updateTags
=== PAUSE TestAccAWSServiceCatalogProduct_updateTags
=== RUN   TestAccAWSServiceCatalogProduct_physicalID
=== PAUSE TestAccAWSServiceCatalogProduct_physicalID
=== CONT  TestAccAWSServiceCatalogProduct_basic
=== CONT  TestAccAWSServiceCatalogProduct_updateTags
=== CONT  TestAccAWSServiceCatalogProduct_physicalID
=== CONT  TestAccAWSServiceCatalogProduct_update
=== CONT  TestAccAWSServiceCatalogProduct_disappears
--- PASS: TestAccAWSServiceCatalogProduct_disappears (30.22s)
--- PASS: TestAccAWSServiceCatalogProduct_basic (32.40s)
--- PASS: TestAccAWSServiceCatalogProduct_updateTags (51.69s)
--- PASS: TestAccAWSServiceCatalogProduct_update (51.98s)
--- PASS: TestAccAWSServiceCatalogProduct_physicalID (73.10s)
PASS
ok  	github.com/terraform-providers/terraform-provider-aws/aws	76.439s
GovCloud
% make testacc TEST=./aws TESTARGS='-run=TestAccAWSServiceCatalogProduct_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./aws -v -count 1 -parallel 20 -run=TestAccAWSServiceCatalogProduct_ -timeout 180m
=== RUN   TestAccAWSServiceCatalogProduct_basic
=== PAUSE TestAccAWSServiceCatalogProduct_basic
=== RUN   TestAccAWSServiceCatalogProduct_disappears
=== PAUSE TestAccAWSServiceCatalogProduct_disappears
=== RUN   TestAccAWSServiceCatalogProduct_update
=== PAUSE TestAccAWSServiceCatalogProduct_update
=== RUN   TestAccAWSServiceCatalogProduct_updateTags
=== PAUSE TestAccAWSServiceCatalogProduct_updateTags
=== RUN   TestAccAWSServiceCatalogProduct_physicalID
=== PAUSE TestAccAWSServiceCatalogProduct_physicalID
=== CONT  TestAccAWSServiceCatalogProduct_basic
=== CONT  TestAccAWSServiceCatalogProduct_updateTags
=== CONT  TestAccAWSServiceCatalogProduct_physicalID
=== CONT  TestAccAWSServiceCatalogProduct_update
=== CONT  TestAccAWSServiceCatalogProduct_disappears
--- PASS: TestAccAWSServiceCatalogProduct_disappears (32.28s)
--- PASS: TestAccAWSServiceCatalogProduct_basic (35.28s)
--- PASS: TestAccAWSServiceCatalogProduct_update (56.65s)
--- PASS: TestAccAWSServiceCatalogProduct_updateTags (60.59s)
--- PASS: TestAccAWSServiceCatalogProduct_physicalID (75.28s)
PASS
ok  	github.com/terraform-providers/terraform-provider-aws/aws	78.242s

@YakDriver YakDriver added this to the v3.38.0 milestone Apr 28, 2021
@YakDriver YakDriver merged commit b706d35 into main Apr 28, 2021
@YakDriver YakDriver deleted the f-servicecat-product branch April 28, 2021 16:29
github-actions bot pushed a commit that referenced this pull request Apr 28, 2021
@ghost
Copy link

ghost commented Apr 30, 2021

This has been released in version 3.38.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!

@github-actions
Copy link

github-actions bot commented Jun 1, 2021

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.
If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jun 1, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
documentation Introduces or discusses updates to documentation. provider Pertains to the provider itself, rather than any interaction with AWS. service/servicecatalog Issues and PRs that pertain to the servicecatalog service. size/XXL Managed by automation to categorize the size of a PR. tests PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants