Skip to content

Commit 8401743

Browse files
authored
fix: add missing permissions and fix example (#8)
1 parent f8f97a8 commit 8401743

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

.pre-commit-config.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.76.0
3+
rev: v1.80.0
44
hooks:
55
- id: terraform_docs
66
- id: terraform_fmt
77
- id: terraform_validate
8+
args:
9+
- --hook-config=--retry-once-with-cleanup=true
810
exclude: '^[^/]+$'
911
- id: terraform_tflint
1012
exclude: ^examples/
1113

1214
- repo: https://github.com/pre-commit/pre-commit-hooks
13-
rev: v4.3.0
15+
rev: v4.4.0
1416
hooks:
1517
- id: trailing-whitespace
1618
- id: end-of-file-fixer

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ for creating the AWS Integration role and the following submodules:
8787

8888
## Resources
8989

90-
- resource.aws_iam_role_policy_attachment.csp (main.tf#157)
90+
- resource.aws_iam_role_policy_attachment.csp (main.tf#159)
9191
- resource.datadog_integration_aws.main (main.tf#28)
9292
- data source.aws_caller_identity.current (main.tf#20)
9393

main.tf

+2
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ module "integration_policy" {
111111
"health:DescribeAffectedEntities",
112112
"kinesis:List*",
113113
"kinesis:Describe*",
114+
"kms:GetKeyRotationStatus",
114115
"lambda:GetPolicy",
115116
"lambda:List*",
116117
"logs:DeleteSubscriptionFilter",
@@ -144,6 +145,7 @@ module "integration_policy" {
144145
"tag:GetResources",
145146
"tag:GetTagKeys",
146147
"tag:GetTagValues",
148+
"wafv2:GetLoggingConfiguration",
147149
"xray:BatchGetTraces",
148150
"xray:GetTraceSummaries",
149151
]

modules/fargate_agent/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ having to setup an EC2 instance. For more information, see: https://docs.datadog
5858
```hcl
5959
module "vpc" {
6060
source = "registry.terraform.io/terraform-aws-modules/vpc/aws"
61-
version = "~> 3.19"
61+
version = "~> 5.0"
6262
6363
name = "main"
6464
cidr = "10.100.0.0/16"
6565
}
6666
6767
module "ecs_cluster" {
68-
source = "github.com/geekcell/terraform-aws-ecs-cluster?ref=main"
68+
source = "github.com/geekcell/terraform-aws-ecs-cluster?ref=v1"
6969
7070
name = "my-ecs-cluster"
7171
}
@@ -127,7 +127,7 @@ module "datadog_agent" {
127127
}
128128
129129
module "datadog_agent_security_group" {
130-
source = "github.com/geekcell/terraform-aws-security-group?ref=main"
130+
source = "github.com/geekcell/terraform-aws-security-group?ref=v1"
131131
132132
name = "datadog-ecs-dd-agent"
133133
vpc_id = module.vpc.private_subnets

modules/fargate_agent/examples/full/main.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module "vpc" {
22
source = "registry.terraform.io/terraform-aws-modules/vpc/aws"
3-
version = "~> 3.19"
3+
version = "~> 5.0"
44

55
name = "main"
66
cidr = "10.100.0.0/16"
77
}
88

99
module "ecs_cluster" {
10-
source = "github.com/geekcell/terraform-aws-ecs-cluster?ref=main"
10+
source = "github.com/geekcell/terraform-aws-ecs-cluster?ref=v1"
1111

1212
name = "my-ecs-cluster"
1313
}
@@ -69,7 +69,7 @@ module "datadog_agent" {
6969
}
7070

7171
module "datadog_agent_security_group" {
72-
source = "github.com/geekcell/terraform-aws-security-group?ref=main"
72+
source = "github.com/geekcell/terraform-aws-security-group?ref=v1"
7373

7474
name = "datadog-ecs-dd-agent"
7575
vpc_id = module.vpc.private_subnets

0 commit comments

Comments
 (0)