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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
|
# main.tf — NCD compliance fixture
# Produces zero NCD policy violations
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
}
provider "aws" {
region = "ap-south-1"
}
# NCD-001 + NCD-002 + NCD-003 — Restricted ingress only
resource "aws_security_group" "good_sg" {
name = "good-sg"
vpc_id = "vpc-12345678"
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["10.0.0.0/8"]
}
ingress {
from_port = 3389
to_port = 3389
protocol = "tcp"
cidr_blocks = ["10.0.0.0/8"]
}
ingress {
from_port = 3306
to_port = 3306
protocol = "tcp"
cidr_blocks = ["10.0.0.0/8"]
}
}
# NCD-004 — Default security group with no rules
resource "aws_default_security_group" "good_default_sg" {
vpc_id = "vpc-12345678"
}
# NCD-005 — NACL denies admin ports
resource "aws_network_acl_rule" "good_nacl_ssh" {
network_acl_id = "acl-12345678"
rule_number = 100
egress = false
protocol = "tcp"
rule_action = "deny"
cidr_block = "0.0.0.0/0"
from_port = 22
to_port = 22
}
resource "aws_network_acl_rule" "good_nacl_rdp" {
network_acl_id = "acl-12345678"
rule_number = 110
egress = false
protocol = "tcp"
rule_action = "deny"
cidr_block = "0.0.0.0/0"
from_port = 3389
to_port = 3389
}
# NCD-006 — VPC endpoints for all required services
resource "aws_vpc_endpoint" "s3" {
vpc_id = "vpc-12345678"
service_name = "com.amazonaws.ap-south-1.s3"
vpc_endpoint_type = "Gateway"
}
resource "aws_vpc_endpoint" "dynamodb" {
vpc_id = "vpc-12345678"
service_name = "com.amazonaws.ap-south-1.dynamodb"
vpc_endpoint_type = "Gateway"
}
resource "aws_vpc_endpoint" "kms" {
vpc_id = "vpc-12345678"
service_name = "com.amazonaws.ap-south-1.kms"
vpc_endpoint_type = "Interface"
private_dns_enabled = true
}
resource "aws_vpc_endpoint" "secretsmanager" {
vpc_id = "vpc-12345678"
service_name = "com.amazonaws.ap-south-1.secretsmanager"
vpc_endpoint_type = "Interface"
private_dns_enabled = true
}
# NCD-007 — HTTP listener redirects to HTTPS
resource "aws_lb_listener" "good_http" {
load_balancer_arn = "arn:aws:elasticloadbalancing:ap-south-1:123456789012:loadbalancer/app/good-alb/1234567890"
port = 80
protocol = "HTTP"
default_action {
type = "redirect"
redirect {
protocol = "HTTPS"
port = "443"
status_code = "HTTP_301"
}
}
}
# NCD-008 — CloudFront enforces HTTPS with TLSv1.2_2021
resource "aws_cloudfront_distribution" "good_cf" {
enabled = true
default_cache_behavior {
allowed_methods = ["GET", "HEAD"]
cached_methods = ["GET", "HEAD"]
target_origin_id = "good-origin"
viewer_protocol_policy = "redirect-to-https"
forwarded_values {
query_string = false
cookies {
forward = "none"
}
}
}
viewer_certificate {
acm_certificate_arn = "arn:aws:acm:us-east-1:123456789012:certificate/abc-123"
ssl_support_method = "sni-only"
minimum_protocol_version = "TLSv1.2_2021"
}
origin {
domain_name = "example.com"
origin_id = "good-origin"
custom_origin_config {
http_port = 80
https_port = 443
origin_protocol_policy = "https-only"
origin_ssl_protocols = ["TLSv1.2"]
}
}
restrictions {
geo_restriction {
restriction_type = "none"
}
}
}
# NCD-009 — API Gateway with logging enabled
resource "aws_api_gateway_rest_api" "good_api" {
name = "good-api"
}
resource "aws_api_gateway_stage" "good_stage" {
rest_api_id = aws_api_gateway_rest_api.good_api.id
stage_name = "prod"
deployment_id = "d-12345678"
}
resource "aws_api_gateway_method_settings" "good_settings" {
rest_api_id = aws_api_gateway_rest_api.good_api.id
stage_name = aws_api_gateway_stage.good_stage.stage_name
method_path = "*/*"
settings {
logging_level = "ERROR"
}
}
|