作者:榴莲牛奶 | 来源:互联网 | 2023-10-13 18:40
This is the continued work from PR #2064 taking in comments from
- https://docs.aws.amazon.com/servicecatalog/latest/dg/API_CreateProduct.html
- https://docs.aws.amazon.com/servicecatalog/latest/dg/API_UpdateProduct.html
- https://docs.aws.amazon.com/servicecatalog/latest/dg/API_DeleteProduct.html
- https://docs.aws.amazon.com/servicecatalog/latest/dg/API_DescribeProductAsAdmin.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| $ make testacc TESTARGS='-run=TestAccAWSServiceCatalogProduct_'
==> Checking that code complies with gofmt requirements...
TF_ACC=1 go test ./... -v -run=TestAccAWSServiceCatalogProduct_ -timeout 120m
? github.com/terraform-providers/terraform-provider-aws [no test files]
=== RUN TestAccAWSServiceCatalogProduct_basic
--- PASS: TestAccAWSServiceCatalogProduct_basic (10.66s)
=== RUN TestAccAWSServiceCatalogProduct_updateTags
--- PASS: TestAccAWSServiceCatalogProduct_updateTags (17.41s)
=== RUN TestAccAWSServiceCatalogProduct_updateProvisioningArtifactBasic
--- PASS: TestAccAWSServiceCatalogProduct_updateProvisioningArtifactBasic (23.06s)
=== RUN TestAccAWSServiceCatalogProduct_updateProvisioningArtifactForceNew
--- PASS: TestAccAWSServiceCatalogProduct_updateProvisioningArtifactForceNew (19.89s)
=== RUN TestAccAWSServiceCatalogProduct_import
--- PASS: TestAccAWSServiceCatalogProduct_import (10.78s)
PASS
ok github.com/terraform-providers/terraform-provider-aws/aws 81.820s |
该提问来源于开源项目:hashicorp/terraform-provider-aws
Notification of Recent and Upcoming Changes to Contributions
Thank you for this contribution! There have been a few recent development changes that affect this pull request. We apologize for the inconvenience, especially if there have been long review delays up until now. Please note that this is automated message from an unmonitored account. See the FAQ for additional information on the maintainer team and review prioritization.
If you are unable to complete these updates, please leave a comment for the community and maintainers so someone can potentially continue the work. The maintainers will encourage other contributors to use the existing contribution as the base for additional changes as appropriate. Otherwise, contributions that do not receive updated code or comments from the original contributor may be closed in the future so the maintainers can focus on active items.
For the most up to date information about Terraform AWS Provider development, see the Contributing Guide. Additional technical debt changes can be tracked with the
label on issues.
As part of updating a pull request with these changes, the most current unit testing and linting will run. These may report issues that were not previously reported.
Action Required: Terraform 0.12 Syntax
Reference: https://github.com/terraform-providers/terraform-provider-aws/issues/8950
Reference: https://github.com/terraform-providers/terraform-provider-aws/issues/14417
Version 3 and later of the Terraform AWS Provider, which all existing contributions would potentially be added, only supports Terraform 0.12 and later. Certain syntax elements of Terraform 0.11 and earlier show deprecation warnings during runs with Terraform 0.12. Documentation and test configurations, such as those including deprecated string interpolations (
1
| some_attribute = "${aws_service_thing.example.id}" |
) should be updated to the newer syntax (
1
| some_attribute = aws_service_thing.example.id |
). Contribution testing will automatically fail on older syntax in the near future. Please see the referenced issues for additional information.
Action Required: Terraform Plugin SDK Version 2
Reference: https://github.com/terraform-providers/terraform-provider-aws/issues/14551
The Terraform AWS Provider has been upgraded to the latest version of the Terraform Plugin SDK. Generally, most changes to contributions should only involve updating Go import paths in source code files. Please see the referenced issue for additional information.
Action Required: Removal of website/aws.erb File
Reference: https://github.com/terraform-providers/terraform-provider-aws/issues/14712
Any changes to the
file are no longer necessary and should be removed from this contribution to prevent merge issues in the near future when the file is removed from the repository. Please see the referenced issue for additional information.
Upcoming Change of Git Branch Naming
Reference: https://github.com/terraform-providers/terraform-provider-aws/issues/14292
Development environments will need their upstream Git branch updated from
to
in the near future. Please see the referenced issue for additional information and scheduling.
Upcoming Change of GitHub Organization
Reference: https://github.com/terraform-providers/terraform-provider-aws/issues/14715
This repository will be migrating from https://github.com/terraform-providers/terraform-provider-aws to https://github.com/hashicorp/terraform-provider-aws. No practitioner or developer action is anticipated and most GitHub functionality will automatically redirect to the new location. Go import paths including
can remain for now. Please see the referenced issue for additional information and scheduling.