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

[docs] update docs to match supported input types #131

Merged
merged 1 commit into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/data-sources/external.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ output "root-value-hello" {
## Argument Reference

* `source` - (Required) A string with sops-encrypted data
* `input_type` - (Required) `yaml`, `json` or `raw`, depending on the structure of the un-encrypted data.
* `input_type` - (Required) `yaml`, `json` `dotenv` (`.env`), `ini` or `raw`, depending on the structure of the un-encrypted data.

## Attribute Reference

Expand Down
2 changes: 1 addition & 1 deletion docs/data-sources/file.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ output "nested-json-value" {
## Argument Reference

* `source_file` - (Required) Path to the encrypted file
* `input_type` - (Optional) The provider will use the file extension to determine how to unmarshal the data. If your file does not have the usual extension, set this argument to `yaml` or `json` accordingly, or `raw` if the encrypted data is encoded differently.
* `input_type` - (Optional) The provider will use the file extension to determine how to unmarshal the data. If your file does not have the usual extension, set this argument to `yaml`, `json`, `dotenv` (`.env`), `ini` accordingly, or `raw` if the encrypted data is encoded differently.

## Attribute Reference

Expand Down