-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
66 lines (54 loc) · 1.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
variable "region" {
type = string
default = "us-east-1"
}
variable "instance_availability_zone" {
type = string
default = "us-east-1b"
}
variable "instance" {
type = string
default = "InstanciaTerraform"
}
variable "instance_blueprintid" {
type = string
default = "ubuntu_20_04"
}
variable "instance_bundleid" {
type = string
default = "micro_2_0" #1GBRAM
#default = "small_1_0" #2GBRAM
}
# Variáveis Setup
variable "dominio" {
type = string
default = "teste.overall.cloud"
}
# Cloudflare
variable "zone_id" {
default = "bfc746a5a6141f5bfc8179270479e2b2"
}
variable "api_cloudflare" {
type = string
default = "d41d8cd98f00b204e9800998ecf8427ed41d8cd98f00b21d8cd98f00b2"
}
variable "domain" {
default = "overall.cloud"
}
# Web
variable "http_port" {
type = string
default = "80"
}
variable "db_nome" {
type = string
default = "teste"
}
variable "porta_api" {
type = string
default = "3333"
}
variable "porta_front" {
type = string
default = "3000"
}