-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathvars.tf
57 lines (42 loc) · 938 Bytes
/
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
variable "compartment_ocid" {
}
variable "region" {
}
variable "availability_domain" {
}
variable "fault_domains" {
type = list(any)
default = ["FAULT-DOMAIN-1", "FAULT-DOMAIN-2", "FAULT-DOMAIN-3"]
}
variable "PATH_TO_PUBLIC_KEY" {
type = string
default = "~/.ssh/id_rsa.pub"
description = "Path to your public key"
}
variable "environment" {
type = string
}
variable "is_private" {
type = bool
default = false
}
variable "public_subnet_id" {
type = string
}
variable "private_subnet_id" {
type = string
}
variable "public_subnet_cidr" {
type = string
}
variable "os_image_id" {
default = "ocid1.image.oc1.eu-zurich-1.aaaaaaaag2uyozo7266bmg26j5ixvi42jhaujso2pddpsigtib6vfnqy5f6q" # Canonical-Ubuntu-20.04-aarch64-2022.01.18-0
}
variable "instance_pool_size" {
type = number
default = 2
}
variable "instance_pool_name" {
type = string
default = "ubuntu-instance-pool"
}