-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVariables.tf
More file actions
47 lines (38 loc) · 794 Bytes
/
Variables.tf
File metadata and controls
47 lines (38 loc) · 794 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
45
46
47
variable "pat" {
type = string
description = "API token"
}
variable "instance_name" {
type = string
description = "Instance name"
}
variable "instance_region" {
type = string
description = "Region to deploy the instance"
}
variable "pvt_key" {
type = string
description = "Path to the private key"
}
variable "scripts_path" {
type = string
}
variable "do_token" {
type = string
}
variable "subdomain_name" {
type = string
description = "Sub-domain name to map to the infisical server ip"
}
variable "project_name" {
type = string
description = "Project id to deploy the resources into"
}
variable "image" {
type = string
description = "Droplet OS image name"
}
variable "instance_size" {
type = string
description = "Server instance type"
}