-
Notifications
You must be signed in to change notification settings - Fork 9.3k
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
prototype: Mux with Terraform Plugin Framework #23948
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…raform Protocol v5 provider's.
github-actions
bot
added
provider
Pertains to the provider itself, rather than any interaction with AWS.
size/XL
Managed by automation to categorize the size of a PR.
labels
Mar 30, 2022
This comment was marked as outdated.
This comment was marked as outdated.
This is necessary for muxing with the v5 provider which has no ability to specify attribute default values in schema. * All except 'max_retries' are unnecessary as they are the type's zero value * The default value of 25 for 'max_retries' can be implemented in code
…pes.String)' in configuration structures.
… lists of strings.
…h 'terraform-plugin-framework'. Acceptance test output: % make testacc TESTS=TestAccMetaARNDataSource_basic PKG=meta ==> Checking that code complies with gofmt requirements... TF_ACC=1 go test ./internal/service/meta/... -v -count 1 -parallel 20 -run='TestAccMetaARNDataSource_basic' -timeout 180m === RUN TestAccMetaARNDataSource_basic === PAUSE TestAccMetaARNDataSource_basic === CONT TestAccMetaARNDataSource_basic --- PASS: TestAccMetaARNDataSource_basic (14.34s) PASS ok github.com/hashicorp/terraform-provider-aws/internal/service/meta 21.527s
github-actions
bot
added
service/apigateway
Issues and PRs that pertain to the apigateway service.
service/cognitoidp
Issues and PRs that pertain to the cognitoidp service.
service/cur
Issues and PRs that pertain to the cur service.
service/fms
Issues and PRs that pertain to the fms service.
service/lightsail
Issues and PRs that pertain to the lightsail service.
service/meta
service/pricing
Issues and PRs that pertain to the pricing service.
service/route53
Issues and PRs that pertain to the route53 service.
service/waf
Issues and PRs that pertain to the waf service.
tests
PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
labels
May 2, 2022
This was referenced Jul 6, 2022
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. |
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.
repository
Repository modifications; GitHub Actions, developer docs, issue templates, codeowners, changelog.
service/apigateway
Issues and PRs that pertain to the apigateway service.
service/cognitoidp
Issues and PRs that pertain to the cognitoidp service.
service/cur
Issues and PRs that pertain to the cur service.
service/fms
Issues and PRs that pertain to the fms service.
service/lightsail
Issues and PRs that pertain to the lightsail service.
service/pricing
Issues and PRs that pertain to the pricing service.
service/route53
Issues and PRs that pertain to the route53 service.
service/waf
Issues and PRs that pertain to the waf service.
size/XL
Managed by automation to categorize the size of a PR.
tests
PRs: expanded test coverage. Issues: expanded coverage, enhancements to test infrastructure.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Community Note
This PR implements a prototype of combining resource and data source implemented in either Terraform Plugin SDK v2 or Terraform Plugin Framework using
terraform-plugin-mux