-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
55 lines (47 loc) · 1.47 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
# Target aws region
variable "aws_region" {
type = string
default = "eu-central-1"
}
# AMI ID for ubuntu
variable "ami_ubuntu_id" {
type = string
default = "ami-07652eda1fbad7432"
}
# VPC network
variable "vpc_cidr_block" {
type = string
default = "10.0.0.0/16"
}
# virtual machine instance type
variable "vm_instance_type" {
type = string
default = "t2.micro"
}
# Private IP for virtual machine
variable "vm_private_ip" {
type = string
default = "10.0.1.14"
}
# My SSH public key
variable "public_key" {
type = string
default = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC3G9Qi+DLDlR4J9m67otpMvOh+UydAcNs2zHFXq8QeEPkcmzuvw0sZDLTL/1w8ukVS7semlugJBR2WMDQMXzGCi/Bt1dy+7VGYylbkTTjUyr97Y55o3D3Aq/4XsQ9wMKwMj3za+pTB4sFFH/b3/zrDvtd59Rasi8QHsqtcInlSm+1OdKvwNyZLlqTzW00drPUa0BLKi3OqV3SiBIhGq4GjRp5SD2R1xdRwrxU4lzBAJepruzi95Mt/HksXo+Sa6Nk9RKdw0d6FD0dQSHYNQjad26dOg9Cj2C7ICX1y3x0opJukKY3kPbU9avuWYwMyXc7Dqt3pCFqPI0NMJJhtJmQqw4MXN+qSYx2E4PctLHn9fO4q+9NSspBWerOJQ+YUY2baK94xEc2CRIIyLWF/2+ve/a3y8K+HLY89j/3wwebverxeEJL7rJWAdEGwgBcVg0YwXi5pygZO9TpqEdumPD09ejMMgXrDSo+lyb6OGqsvtbfiKvqupkKy2bKnjnsV7Zs= MBP"
}
variable "availability_zone" {
type = string
default = "eu-central-1a"
}
variable "public_subnets_cidr" {
type = string
default = "10.0.1.0/24"
}
variable "private_subnets_cidr" {
type = string
default = "10.0.2.0/24"
}
# Custom tag to track resources by this project
variable "custom_tag" {
type = string
default = "built-by-terraform"
}