-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
43 lines (36 loc) · 1 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
##################################
# General
##################################
variable "aws_region" {
description = "AWS region"
type = string
default = "us-west-2"
}
variable "project_tags" {
description = "Tags to apply to resources allocated to project"
type = map(string)
default = {
project = "ecp-vault"
environment = "dev"
primary_contact = "Steve Cliff"
primary_email = "[email protected]"
}
}
##################################
# Instance
##################################
variable "instance_ami" {
description = "ID of the AMI used"
type = string
default = "ami-03bb77caf81b15cc5" # Ubuntu 20.04 LTS
}
variable "instance_type" {
description = "Type of the instance"
type = string
default = "t2.micro" # Just for testing with
}
variable "instance_keypair" {
description = "SSH Key pair to allocate to instances"
type = string
default = "ecp-vault" # DBG Regen this prior to putting live
}