-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
97 lines (76 loc) · 1.85 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 {
backend "remote" {
organization = "vgh"
workspaces {
name = "Nyx"
}
}
}
locals {
common_tags = {
Terraform = "true"
Group = "vgh"
Project = "prometheus"
}
}
provider "aws" {
region = "us-east-1"
}
provider "cloudflare" {
email = var.cloudflare_email
api_key = var.cloudflare_api_key
}
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 = "Lyra"
common_tags = var.common_tags
}
# module "cloudwatch_event_watcher" {
# source = "github.com/vghn/terraform-cloudwatch_event_watcher"
# slack_alerts_hook_url = var.slack_alerts_hook_url
# 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
# }
# module "prometheus" {
# source = "github.com/vghn/terraform-prometheus"
# vpc_id = module.vpc.vpc_id
# cloudflare_email = var.cloudflare_email
# cloudflare_api_key = var.cloudflare_api_key
# cloudflare_zone_id = var.cloudflare_zone_id
# common_tags = var.common_tags
# }