-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathaws_vars.tf
36 lines (34 loc) · 1.12 KB
/
aws_vars.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
#variable "aws_access_key" {}
#variable "aws_secret_key" {}
data "aws_availability_zones" "available" {}
variable "aws_region" {}
variable "crwd_cid" {}
variable "crwd_sensor" {}
variable "WebCIDR_TrustBlock1" {}
variable "WebSRV1_AZ1_Trust" {}
variable "WebCIDR_UntrustBlock1" {}
variable "bucket_name" {}
variable "VPCName" {}
variable "VPCCIDR" {}
variable "ServerKeyName" {}
variable "StackName" {}
variable "UbuntuRegionMap" {
type = map
#Ubuntu Server 16.04 LTS (HVM)
default = {
"us-west-1" = "ami-05add91e3c9ec59da"
"us-west-2" = "ami-000de76905d16b042"
"us-east-1" = "ami-021d9d94f93a07a43"
"us-east-2" = "ami-04239d579c52de263"
"ca-central-1" = "ami-00ecb370195d6a225"
"eu-west-1" = "ami-09e0dc5839aa7eca9"
"eu-west-2" = "ami-0629d16d9e818369f"
"eu-central-1" = "ami-0d30b058bf84b0a0c"
"ap-east-1" = "ami-72661d03"
"ap-northeast-1" = "ami-0910fb379f9c0dda9"
"ap-southeast-1" = "ami-0dff5e99784353c4a"
"ap-southeast-2" = "ami-042ed6b729919aa24"
"ap-south-1" = "ami-0f382fa26248923ea"
"sa-east-1" = "ami-027c2142d479531cb"
}
}