-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
57 lines (54 loc) · 934 Bytes
/
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
48
49
50
51
52
53
54
#*************************************
# TF Requirements
#*************************************
variable "region" {
default = "uk-london-1"
}
variable "instance_shape_config_ocpus" {
default = 1
}
variable "instance_shape_config_memory_in_gbs" {
default = 4
}
variable "tenancy_ocid" {
type = string
}
variable "vnic_subnetid" {
type = string
}
variable "user_ocid" {
type = string
}
variable "private_key_path" {
type = string
}
variable "fingerprint"{
type = string
}
variable "compartment_ocid" {
type = string
}
variable "ssh_public_key" {
type = string
}
variable "ssh_private_key" {
type = string
}
variable "tailscale_key" {
type = string
}
variable "os_image_source_id" {
type = string
}
variable "duckdns_token" {
type = string
}
variable "duckdns_domain" {
type = string
}
variable "caddy_acme_reg_email" {
type = string
}
variable "caddy_domain_name" {
type = string
}