-
Notifications
You must be signed in to change notification settings - Fork 15
/
vars.tf
67 lines (50 loc) · 1.06 KB
/
vars.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
55
56
57
58
59
60
61
62
63
64
65
66
67
variable "compartment_ocid" {
}
variable "region" {
}
variable "availability_domain" {
}
variable "environment" {
type = string
}
variable "PATH_TO_PUBLIC_KEY" {
type = string
default = "~/.ssh/id_rsa.pub"
description = "Path to your public key"
}
variable "setup_bastion" {
type = bool
default = true
}
variable "bastion_user" {
type = string
default = "bastion"
}
variable "bastion_group" {
type = string
default = "bastion"
}
variable "ssh_keys_path" {
type = list(any)
default = ["~/.ssh/id_rsa.pub"]
}
variable "default_fault_domain" {
default = "FAULT-DOMAIN-1"
}
variable "fault_domains" {
type = list(any)
default = ["FAULT-DOMAIN-1", "FAULT-DOMAIN-2", "FAULT-DOMAIN-3"]
}
variable "vcn_id" {
type = string
}
variable "private_subnet_id" {
type = string
}
variable "public_subnet_id" {
type = string
}
variable "os_image_id" {
type = string
default = "ocid1.image.oc1.eu-zurich-1.aaaaaaaag2uyozo7266bmg26j5ixvi42jhaujso2pddpsigtib6vfnqy5f6q" # Canonical-Ubuntu-20.04-aarch64-2022.01.18-0
}