Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
`api_token` fix
  • Loading branch information
zburgermeiszter authored Oct 21, 2020
1 parent cfc8692 commit 6de7cb4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ terraform {
required_providers {
pingdom = {
source = "russellcardullo/pingdom"
version = "1.1.2"
version = "1.1.3"
}
}
}
variable "pingdom_api_token" {}
provider "pingdom" {
pingdom_api_token = "${var.pingdom_api_token}"
api_token = "${var.pingdom_api_token}"
}
```

Expand Down Expand Up @@ -86,7 +86,7 @@ provider "heroku" {
}
provider "pingdom" {
pingdom_api_token = var.pingdom_api_token
api_token = var.pingdom_api_token
}
resource "heroku_app" "example" {
Expand Down Expand Up @@ -281,4 +281,4 @@ The binary will then be available at `_build/terraform-provider-pingdom_VERSION`
make install
```

This will place the binary under `$HOME/.terraform.d/plugins/OS_ARCH/terraform-provider-pingdom_VERSION`. After installing you will need to run `terraform init` in any project using the plugin.
This will place the binary under `$HOME/.terraform.d/plugins/OS_ARCH/terraform-provider-pingdom_VERSION`. After installing you will need to run `terraform init` in any project using the plugin.

0 comments on commit 6de7cb4

Please sign in to comment.