-
Notifications
You must be signed in to change notification settings - Fork 0
/
instances.tf
29 lines (28 loc) · 898 Bytes
/
instances.tf
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
# Where to store the terraform state
terraform {
backend "azurerm" {
storage_account_name = "terraformstatic2"
container_name = "terstatic"
key = "hetznerstreama.terraform.tfstate"
}
}
## Create new instances here ##
module "streama" {
source = "./hetzner"
#name of the VM on hetzner
instance_name = "streama1"
#hetzner VM size
size = "cx11"
#the domain for streama !!!EDIT HERE AND IN VARS.YML!!!
domain = "fireflix.stream"
#hetzner api key
hcloud_token = "xKNdU3vMKlC1Kwda0qcwGOuseXFI20tNPFqbraaPwftNjusAvShXGhSprZRslVnL"
#cloudflare global token
cfapikey = "0ce62d256c763aaa9b4b71b83e23caebf3616"
#cloudflare zone id
cfzoneid = "c1c89878b83f977facc237e474abae1b"
#cloudflare e-mail
cfemail = "[email protected]"
#cloudflare account id
cfaccid = "43a65a3768f2569190b5ad4b041b34a4"
}