Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Example code update for newer versions of terraform #436

Merged
merged 2 commits into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Example code update for newer versions of terraform
  • Loading branch information
drastawi committed Dec 22, 2021
commit c789806e446d65d3b6dfb2a8c5fcafc44615f021
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
example.tf
terraform.tfplan
terraform.tfstate
.terraform.lock.hcl
bin/
dist/
modules-dev/
Expand Down
8 changes: 8 additions & 0 deletions website/docs/index.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ Use the navigation to the left to read about the available resources.

```hcl
# Configure the PagerDuty provider
terraform {
required_providers {
pagerduty = {
source = "pagerduty/pagerduty"
}
}
}

provider "pagerduty" {
token = var.pagerduty_token
}
Expand Down