We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efbada8 commit c789806Copy full SHA for c789806
2 files changed
.gitignore
@@ -4,6 +4,7 @@
4
example.tf
5
terraform.tfplan
6
terraform.tfstate
7
+.terraform.lock.hcl
8
bin/
9
dist/
10
modules-dev/
website/docs/index.html.markdown
@@ -16,6 +16,14 @@ Use the navigation to the left to read about the available resources.
16
17
```hcl
18
# Configure the PagerDuty provider
19
+terraform {
20
+ required_providers {
21
+ pagerduty = {
22
+ source = "pagerduty/pagerduty"
23
+ }
24
25
+}
26
+
27
provider "pagerduty" {
28
token = var.pagerduty_token
29
}
0 commit comments