-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
56 lines (44 loc) · 1.16 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
###########
# METADATA
###########
variable "meta_namespace" {
description = "A namespace name."
default = "default"
}
variable "meta_name" {
description = "A name describing the deployment."
}
variable "meta_owner_name" {
description = "The name of the person that owns the deployment."
}
variable "meta_owner_email" {
description = "The email address of the person that owns the deployment."
}
variable "meta_owner_department" {
description = "The department the person that owns the deployment belongs to."
}
######
# AWS
######
variable "aws_shared_credentials_file" {
description = "An absolute path to your AWS shared credentials file."
default = "~/.aws/credentials"
}
variable "aws_profile" {
description = "The name of the AWS profile (configuration block name in the shared credentials file)."
default = "default"
}
variable "aws_region" {
description = "The name of the AWS region."
default = "eu-west-1"
}
######
# EC2
######
variable "ec2_key_name" {
description = "The name of your EC2 key pair."
}
variable "ec2_instance_type" {
description = "The instance type of the EC2 instance."
default = "t2.micro"
}