-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (30 loc) · 836 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
#My Variables
variable "perfix" {
type = string
default = "your_perfix_name"
description = "My perfix name for resource"
}
variable "project" {
type = string
default = "your_project-name"
description = "My project name & tag"
}
variable "region" {
default = "us-east-1"
description = "You can change it to whatever region you want"
}
variable "cloudflayr_token" {
type = string
default = "$your_cloudflayr_api_token"
description = "Cloudflayr API token"
}
variable "domain" {
type = string
default = "$your_website_domain"
description = "Frontend website domain"
}
variable "sub_domain" {
type = string # if you don't want to use sub_domain variable, comment this varible or delete it
default = "$your_sub_domain"
description = "Sub Domain"
}