-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathproviders.tf
More file actions
44 lines (40 loc) · 851 Bytes
/
Copy pathproviders.tf
File metadata and controls
44 lines (40 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
terraform {
required_providers {
hcloud = {
# https://registry.terraform.io/providers/hetznercloud/hcloud/latest/docs
source = "hetznercloud/hcloud"
version = "1.60.1"
}
acme = {
source = "vancluever/acme"
version = "2.46.0"
}
remote = {
source = "tenstad/remote"
version = "0.2.1"
}
null = {
source = "hashicorp/null"
version = "3.3.1"
}
ssh = {
source = "loafoe/ssh"
version = "2.7.0"
}
}
}
provider "hcloud" {
alias = "default"
token = var.hcloud_token
}
provider "hcloud" {
alias = "dns"
token = var.hcloud_dns_token
}
provider "acme" {
server_url = "https://acme-v02.api.letsencrypt.org/directory"
}
provider "acme" {
alias = "staging"
server_url = "https://acme-staging-v02.api.letsencrypt.org/directory"
}