Skip to content

Commit

Permalink
Merge pull request #193 from jonathan-hosmer/patch-1
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
emocharnik authored Nov 21, 2022
2 parents c3651c2 + c473ed8 commit 53e88a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))

## [1.0.0-rc38] - 2022-10-20

Expand Down
4 changes: 2 additions & 2 deletions docs/data-sources/scalr_variable.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```
Expand All @@ -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-<RANDOM STRING>`
* `envrironment_id` - (Optional) The identifier of the Scalr environment, in the format `env-<RANDOM STRING>`. 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-<RANDOM STRING>`. 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-<RANDOM STRING>`. Used to shrink the scope of the variable in case the variable name exists on multiple workspaces.


Expand Down

0 comments on commit 53e88a5

Please sign in to comment.