-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
47 lines (40 loc) · 1.27 KB
/
variables.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "do_token" {
description = "DigitalOcean API token, named CloudTerraformDigitalOceanPersonalAccessToken."
type = string
sensitive = true
}
variable "cloudflare_api_token" {
description = "Cloudflare API token, sourced from cloudflare.com > My Profile > API Tokens."
type = string
sensitive = true
}
variable "namecheap_api_key" {
description = "Namecheap API key, sourced from namecheap.com > Profile > Tools > API Access."
type = string
sensitive = true
}
variable "namecheap_static_ip" {
description = "The static IP address through which the NameCheap API is accessed."
type = string
sensitive = true
}
variable "hidden_domain_07bed711" {
description = "The hidden domain with a SHA256 fingerprint of 07bed711"
type = string
sensitive = true
}
variable "hidden_domain_22c5fdd4" {
description = "The hidden domain with a SHA256 fingerprint of 22c5fdd4"
type = string
sensitive = true
}
variable "hidden_domain_e891f9e5" {
description = "The hidden domain with a SHA256 fingerprint of e891f9e5"
type = string
sensitive = true
}
variable "cloudflare_email_address" {
description = "The email address used to register with CloudFlare."
type = string
sensitive = true
}