Skip to content

Commit

Permalink
docs(examples): fixed provider instalation syntax and usage (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndopj authored Oct 4, 2023
1 parent 1e98116 commit 87773a1
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 @@ -15,14 +15,14 @@ This open-source _Terraform_ provider enables users to seamlessly and quickly in
```terraform
terraform {
required_providers {
monte_carlo = {
montecarlo = {
source = "kiwicom/montecarlo"
version = "~> 0.0.1"
}
}
}
provider "monte_carlo" {
provider "montecarlo" {
account_service_key = {
id = "montecarlo"
token = "montecarlo"
Expand Down
4 changes: 2 additions & 2 deletions examples/provider/provider.tf
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
terraform {
required_providers {
monte_carlo = {
montecarlo = {
source = "kiwicom/montecarlo"
version = "~> 0.0.1"
}
}
}

provider "monte_carlo" {
provider "montecarlo" {
account_service_key = {
id = "montecarlo"
token = "montecarlo"
Expand Down

0 comments on commit 87773a1

Please sign in to comment.