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

Update README with change in environment variable semantics #617

Merged
merged 1 commit into from
Sep 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ an example of this in action.

tfgen, the command that generates Pulumi schema/code for a bridged provider supports the following environment variables:

* `PULUMI_MISSING_MAPPING_ERROR`: If truthy, fail if a data source or resource in the TF provider is not mapped to the Pulumi provider.
* `PULUMI_MISSING_DOCS_ERROR`: If truthy, fail if docs cannot be found for a data source or resource.
* `PULUMI_EXTRA_MAPPING_ERROR`: If truthy, fail if a mapped data source or resource does not exist in the TF provider.
* `PULUMI_SKIP_MISSING_MAPPING_ERROR`: If truthy, tfgen will not fail if a data source or resource in the TF provider is not mapped to the Pulumi provider. Instead, a warning is printed. Default is `false`.
* `PULUMI_SKIP_EXTRA_MAPPING_ERROR`: If truthy, tfgen will not fail if a mapped data source or resource does not exist in the TF provider. Instead, warning is printed. Default is `false`.
* `PULUMI_MISSING_DOCS_ERROR`: If truthy, tfgen will fail if docs cannot be found for a data source or resource. Default is `false`.