Skip to content

Commit

Permalink
updating argument list with new normalize_file_path argument
Browse files Browse the repository at this point in the history
  • Loading branch information
rpatrick00 committed Nov 1, 2018
1 parent 35ddb13 commit 1dfc1b0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ provider "environment" {}
data "environment_variable" "HOME" {
name = "HOME"
failIfEmpty = true
normalize_file_path = true
}
provider "kubernetes" {
Expand All @@ -26,6 +27,7 @@ The following arguments are supported:
- `name` - (Required) The name of the environment variable whose value should be used.
- `default` - (Optional) The default value to use should the environment variable not be set or set to an empty string.
- `fail_if_empty` - (Optional) Whether or not the data source read should fail if the final value of the environment variable (after applying the `default`, if specified), if empty. The default value is `false`.
- `normalize_file_path` - (Optional) Whether or not to treat the final value as a file path, which means makign sure to quote any backslashes in the path when running on the Windows platform. The default value is `false`.

### Attributes
___
Expand Down

0 comments on commit 1dfc1b0

Please sign in to comment.