-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
97 lines (75 loc) · 1.6 KB
/
main.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
terraform {
required_version = ">= 0.12"
backend "remote" {
organization = "vgh"
workspaces {
name = "Hydra"
}
}
}
locals {
common_tags = {
Terraform = "true"
Group = "vgh"
Project = "vault"
}
}
provider "aws" {
region = "us-east-1"
version = "~> 2.0"
}
provider "cloudflare" {
version = "~> 2.0"
email = var.cloudflare_email
api_key = var.cloudflare_api_key
}
provider "null" {
version = "~> 2.0"
}
data "aws_region" "current" {}
data "aws_caller_identity" "current" {}
module "notifications" {
source = "github.com/vghn/terraform-notifications"
email = var.email
common_tags = var.common_tags
}
module "billing" {
source = "github.com/vghn/terraform-billing"
notifications_topic_arn = module.notifications.topic_arn
thresholds = ["1", "2", "3", "4", "5"]
account = "Hydra"
common_tags = var.common_tags
}
module "cloudwatch_event_watcher" {
source = "github.com/vghn/terraform-cloudwatch_event_watcher"
common_tags = var.common_tags
}
module "cloudtrail" {
source = "github.com/vghn/terraform-cloudtrail"
common_tags = var.common_tags
}
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "~> 2.0"
name = "VGH"
cidr = "10.0.0.0/16"
enable_dns_support = true
enable_dns_hostnames = true
azs = [
"us-east-1a",
"us-east-1b",
"us-east-1c",
"us-east-1d",
"us-east-1e",
"us-east-1f",
]
public_subnets = [
"10.0.1.0/24",
"10.0.2.0/24",
"10.0.3.0/24",
"10.0.4.0/24",
"10.0.5.0/24",
"10.0.6.0/24",
]
tags = var.common_tags
}