Skip to content

Commit 9249563

Browse files
committed
Initial
0 parents  commit 9249563

File tree

9 files changed

+156
-0
lines changed

9 files changed

+156
-0
lines changed

.github/workflows/main.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Terraform Module"
2+
defaults:
3+
run:
4+
shell: bash
5+
6+
on:
7+
push:
8+
branches:
9+
- develop
10+
- master
11+
12+
jobs:
13+
module:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout Code
17+
uses: actions/checkout@v2-beta
18+
19+
- name: Create AWS Profile
20+
run: make test

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.terraform
2+
*.tfstate*

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020-present HazelOps OÜ https://hazelops.com
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
test:
2+
@echo "TBD: Linter"

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# AWS ECS Datadog Agent Terraform Module
2+
3+
TBD

main.tf

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
data "aws_region" "current" {}
2+
3+
locals {
4+
secret_names = concat(var.secret_names, [
5+
"DD_API_KEY",
6+
])
7+
8+
environment = merge(var.environment,
9+
{
10+
DD_APM_ENABLED = "true"
11+
DD_DOGSTATSD_NON_LOCAL_TRAFFIC = "true"
12+
DD_APM_NON_LOCAL_TRAFFIC = "true"
13+
DD_PROCESS_AGENT_ENABLED = "true"
14+
DD_TAGS = "env:${var.env} app:${var.app_name}"
15+
DD_TRACE_ANALYTICS_ENABLED = "true"
16+
// ECS_FARGATE = var.ecs_launch_type == "FARGATE" ? "true" : "false"
17+
}
18+
)
19+
20+
container_definition = {
21+
name = var.name
22+
image = "${var.docker_image_name}:${var.docker_image_tag}",
23+
memoryReservation = 128,
24+
essential = true,
25+
26+
environment = [for k, v in local.environment : {name = k, value = v}]
27+
secrets = module.ssm.secrets
28+
29+
volumeMappings = var.ecs_launch_type == "FARGATE" ? [] : [
30+
{
31+
containerVolume = "/var/run/docker.sock",
32+
hostVolume = "/var/run/docker.sock"
33+
}
34+
],
35+
36+
37+
38+
logConfiguration = var.cloudwatch_log_group == "" ? {
39+
logDriver = "json-file"
40+
options = {}
41+
} : {
42+
logDriver = "awslogs",
43+
options = {
44+
awslogs-group = var.cloudwatch_log_group
45+
awslogs-region = data.aws_region.current.name
46+
awslogs-stream-prefix = var.name
47+
}
48+
}
49+
}
50+
51+
52+
}
53+
54+
module "ssm" {
55+
source = "../ssm-secrets"
56+
env = var.env
57+
app_name = var.app_name
58+
names = local.secret_names
59+
}

output.tf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
output "container_definition" {
2+
value = local.container_definition
3+
}

variables.tf

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
variable "env" {
2+
}
3+
4+
variable "name" {
5+
default = "datadog-agent"
6+
}
7+
8+
variable "app_name" {
9+
type = string
10+
}
11+
12+
13+
variable "environment" {
14+
type = map(string)
15+
default = {}
16+
}
17+
18+
variable "secret_names" {
19+
type = list(string)
20+
default = []
21+
}
22+
23+
//variable "ecs_cluster" {
24+
// type = string
25+
//}
26+
27+
variable "docker_image_name" {
28+
type = string
29+
default = "datadog/agent"
30+
}
31+
32+
variable "docker_image_tag" {
33+
type = string
34+
default = "latest"
35+
}
36+
37+
variable "ecs_launch_type" {
38+
39+
}
40+
41+
variable "cloudwatch_log_group" {
42+
default = ""
43+
}

versions.tf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
terraform {
2+
required_version = "~> 0.12.0"
3+
}

0 commit comments

Comments
 (0)