-
Notifications
You must be signed in to change notification settings - Fork 9.5k
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
First implementation of module attribution. #22583
Merged
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
fe31946
First implementation of module attribution.
paddycarver 98cdb7b
Support for validating provider_meta block.
paddycarver 354f56f
Better apply-time errors.
paddycarver a26a57b
Various bug fixes.
paddycarver 003c422
Make ProviderMeta available in the SDK.
paddycarver b81eb89
Pass provider meta on destroy.
paddycarver 5c6bc65
First provider_meta test written.
paddycarver 53c2d6d
Start supporting ProviderMeta on all RPC calls.
paddycarver b15ca8d
Set ProviderMeta during PlanResourceChange.
paddycarver a0dea88
Add support for refresh to ProviderMeta.
paddycarver 42f49d6
Add test that ProviderMeta is set on Destroy.
paddycarver 1c831cb
Add support for data sources with ProviderMeta.
paddycarver 67455b9
Flesh out tests a bit.
paddycarver 869bdbb
Finish tests, fix some error subjects.
paddycarver cac3f9a
Add documentation for provider_meta.
paddycarver 4b65daa
Fix import errors.
paddycarver be9ad2e
OK but run the tests this time.
paddycarver 836d8bc
Delete terraform.tfstate
paddycarver ed4894a
Fix to use the new addrs.Provider struct.
paddycarver 48b5210
Fix our transform to compile again.
paddycarver 6fba1c1
Update our test cases to use submodules.
paddycarver e6dba2c
Whitespace fixes.
paddycarver 3eab4e8
Implement provider meta schema everywher on the client.
paddycarver f85f0f0
Update in response to review.
paddycarver aa3476c
Add integration tests for provider meta.
paddycarver 47b556d
Fill in provider_meta where it was missing in schema.
paddycarver c62e378
Try updating context tests to cross module boundaries.
paddycarver a875f24
Delete the three characters that cost me days.
paddycarver f35b91f
Add description to protocol for blocks/resources
paultyng db7ef30
Continue updating tests.
paddycarver 109847d
Finish fixing tests.
paddycarver ecc8114
Fix broken tests.
paddycarver aeb26b2
Update version on website.
paddycarver 0bcc625
Fix protobuf error and regenerate.
paddycarver 298d5a5
Add mappings for desc, kind, dep
paultyng d7a135d
Update test fixtures.
paddycarver 23acb02
Fix whitespace.
paddycarver File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,17 +9,20 @@ | |
"attributes": { | ||
"ami": { | ||
"type": "string", | ||
"optional": true | ||
"optional": true, | ||
"description_kind": "plain" | ||
}, | ||
"id": { | ||
"type": "string", | ||
"optional": true, | ||
"computed": true | ||
"computed": true, | ||
"description_kind": "plain" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there is some weird whitespace here |
||
} | ||
} | ||
}, | ||
"description_kind": "plain" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there is some weird whitespace here |
||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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.
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.
there is some weird whitespace here