-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
41 lines (35 loc) · 857 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
variable "region" {
type = string
default = "eu-west-3"
description = "aws region"
}
variable "availability_zone" {
type = string
default = "eu-west-3a"
description = "server availability zone"
}
variable "name_tag_value" {
# This will need to be changed also in server.py
type = string
default = "auto stop"
description = "server name tag"
}
variable "owner_tag_value" {
type = string
default = "infra"
description = "server owner tag"
}
variable "project_tag_value" {
type = string
default = "challenge accepted!"
description = "server project tag"
}
variable "key_pair" {
type = string
default = "tf-challenge"
description = "server key pair"
}
variable "bucket_prefix" {
type = string
description = "Creates a unique bucket name"
}