diff --git a/CHANGELOG.md b/CHANGELOG.md index 54296dee..c919c7ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - panic when creating workspace with empty var file value ([#191](https://github.com/Scalr/terraform-provider-scalr/pull/191)) +- typo in documentation of `scalr_variable` data-source `environment_id` parameter ([#193](https://github.com/Scalr/terraform-provider-scalr/pull/193)) ### Deprecated diff --git a/docs/data-sources/scalr_variable.md b/docs/data-sources/scalr_variable.md index c101fe10..7c09e624 100644 --- a/docs/data-sources/scalr_variable.md +++ b/docs/data-sources/scalr_variable.md @@ -10,7 +10,7 @@ data "scalr_variable" "test_var" { key = "key" category = "terraform" account_id = "acc-tgobtsrgo3rlks8" - envrironment_id = "env-sv0425034857d22" + environment_id = "env-sv0425034857d22" workspace_id = "ws-tlbp7litrs55vgg" } ``` @@ -20,7 +20,7 @@ data "scalr_variable" "test_var" { * `key` - (Required) The name of a Scalr variable. * `category` - (Optional) The category of a Scalr variable. * `account_id` - (Optional) ID of the account, in the format `acc-` -* `envrironment_id` - (Optional) The identifier of the Scalr environment, in the format `env-`. Used to shrink the scope of the variable in case the variable name exists in multiple environments. +* `environment_id` - (Optional) The identifier of the Scalr environment, in the format `env-`. Used to shrink the scope of the variable in case the variable name exists in multiple environments. * `workspace_id` - (Optional) The identifier of the Scalr workspace, in the format `ws-`. Used to shrink the scope of the variable in case the variable name exists on multiple workspaces.