File tree Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Expand file tree Collapse file tree 1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,26 @@ Requirements
13
13
- [ Terraform] ( https://www.terraform.io/downloads.html ) 0.12.x
14
14
- [ Go] ( https://golang.org/doc/install ) 1.11 (to build the provider plugin)
15
15
16
+ Using the Provider
17
+ ----------------------
18
+
19
+ ``` hcl
20
+ terraform {
21
+ required_providers {
22
+ powerdns = {
23
+ source = "pan-net/powerdns"
24
+ }
25
+ }
26
+ }
27
+
28
+ provider "powerdns" {
29
+ server_url = "https://host:port/" # or use PDNS_SERVER_URL variable
30
+ api_key = "secret" # or use PDNS_API_KEY variable
31
+ }
32
+ ```
33
+
34
+ For detailed usage see [ provider's documentation page] ( https://www.terraform.io/docs/providers/powerdns/index.html )
35
+
16
36
Building The Provider
17
37
---------------------
18
38
@@ -36,11 +56,6 @@ $ go build
36
56
37
57
This will compile and place the provider binary, ` terraform-provider-powerdns ` , in the current directory.
38
58
39
- Using the provider
40
- ----------------------
41
-
42
- For detailed usage see [ provider's documentation page] ( https://www.terraform.io/docs/providers/powerdns/index.html )
43
-
44
59
Developing the Provider
45
60
---------------------------
46
61
You can’t perform that action at this time.
0 commit comments