File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -6,14 +6,18 @@ Currently only supports maintaining DNS Zones and Records.
6
6
- Required: ` HOSTINGDE_AUTH_TOKEN ` , go to your [ hosting.de profile] ( https://secure.hosting.de/profile ) and create an API Key
7
7
- Optional: ` HOSTINGDE_ACCOUNT_ID `
8
8
9
+ ### Quick start
10
+ ``` shell
11
+ terraform init
12
+ ```
9
13
10
14
### Example ` main.tf `
11
15
```
12
16
terraform {
13
17
required_providers {
14
18
hostingde = {
15
- source = "hostingde /hostingde"
16
- version = ">= 0.0.1 "
19
+ source = "pub-solar /hostingde"
20
+ version = ">= 0.0.2 "
17
21
}
18
22
}
19
23
}
@@ -132,7 +136,7 @@ Add your GOBIN PATH to `~/.terraformrc`
132
136
provider_installation {
133
137
134
138
dev_overrides {
135
- "registry.terraform.io/hostingde /hostingde" = "<PATH>"
139
+ "registry.terraform.io/pub-solar /hostingde" = "<PATH>"
136
140
}
137
141
138
142
# For all other providers, install them directly from their origin provider
Original file line number Diff line number Diff line change 1
1
terraform {
2
2
required_providers {
3
3
hostingde = {
4
- source = " hostingde /hostingde"
5
- version = " >= 0.0.1 "
4
+ source = " pub-solar /hostingde"
5
+ version = " >= 0.0.2 "
6
6
}
7
7
}
8
8
}
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ import (
13
13
14
14
func main () {
15
15
providerserver .Serve (context .Background (), hostingde .New , providerserver.ServeOpts {
16
- Address : "registry.terraform.io/hostingde /hostingde" ,
16
+ Address : "registry.terraform.io/pub-solar /hostingde" ,
17
17
})
18
18
}
You can’t perform that action at this time.
0 commit comments