Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tenstad committed Aug 29, 2021
1 parent f0c59d8 commit 43db21d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ description: |-
## Example Usage

```terraform
# 'conn' must be defined in the resources and data sources when not defined in the provider
# 'conn' must be defined in the resources and data sources when not defined in the provider.
provider "remote" {
max_sessions = 2
}
# When 'conn' is defined in the provider, it can be overridden in resources and data sources
# When 'conn' is defined in the provider, it can be overridden in resources and data sources.
# To override it, simply define a 'conn' in the resource or data source.
provider "remote" {
alias = "server1"
Expand Down
4 changes: 2 additions & 2 deletions examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# 'conn' must be defined in the resources and data sources when not defined in the provider
# 'conn' must be defined in the resources and data sources when not defined in the provider.
provider "remote" {
max_sessions = 2
}

# When 'conn' is defined in the provider, it can be overridden in resources and data sources
# When 'conn' is defined in the provider, it can be overridden in resources and data sources.
# To override it, simply define a 'conn' in the resource or data source.
provider "remote" {
alias = "server1"
Expand Down

0 comments on commit 43db21d

Please sign in to comment.