forked from Nova-reward/Nova-Rewards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiam.tf
More file actions
124 lines (112 loc) · 3.02 KB
/
Copy pathiam.tf
File metadata and controls
124 lines (112 loc) · 3.02 KB
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
# IAM Role for EC2 instances
resource "aws_iam_role" "ec2_role" {
name_prefix = "${var.app_name}-ec2-role-"
assume_role_policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Action = "sts:AssumeRole"
Effect = "Allow"
Principal = {
Service = "ec2.amazonaws.com"
}
}
]
})
tags = var.tags
}
# IAM Instance Profile
resource "aws_iam_instance_profile" "ec2_profile" {
name_prefix = "${var.app_name}-ec2-profile-"
role = aws_iam_role.ec2_role.name
}
# Policy for S3 bucket access (least privilege)
resource "aws_iam_role_policy" "s3_access" {
name_prefix = "${var.app_name}-s3-access-"
role = aws_iam_role.ec2_role.id
policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Sid = "S3BucketAccess"
Effect = "Allow"
Action = [
"s3:GetObject",
"s3:PutObject",
"s3:DeleteObject",
"s3:ListBucket"
]
Resource = [
"arn:aws:s3:::${var.s3_bucket_name}",
"arn:aws:s3:::${var.s3_bucket_name}/*"
]
}
]
})
}
# Policy for Secrets Manager access (least privilege)
resource "aws_iam_role_policy" "secrets_manager_access" {
name_prefix = "${var.app_name}-secrets-access-"
role = aws_iam_role.ec2_role.id
policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Sid = "SecretsManagerAccess"
Effect = "Allow"
Action = [
"secretsmanager:GetSecretValue",
"secretsmanager:DescribeSecret"
]
Resource = "arn:aws:secretsmanager:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:secret:${var.secrets_manager_path}"
}
]
})
}
# Policy for CloudWatch Logs
resource "aws_iam_role_policy" "cloudwatch_logs" {
name_prefix = "${var.app_name}-cloudwatch-logs-"
role = aws_iam_role.ec2_role.id
policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Sid = "CloudWatchLogs"
Effect = "Allow"
Action = [
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:PutLogEvents",
"logs:DescribeLogStreams"
]
Resource = "arn:aws:logs:${data.aws_region.current.name}:${data.aws_caller_identity.current.account_id}:log-group:/nova-rewards/*"
}
]
})
}
# Policy for CloudWatch Metrics
resource "aws_iam_role_policy" "cloudwatch_metrics" {
name_prefix = "${var.app_name}-cloudwatch-metrics-"
role = aws_iam_role.ec2_role.id
policy = jsonencode({
Version = "2012-10-17"
Statement = [
{
Sid = "CloudWatchMetrics"
Effect = "Allow"
Action = [
"cloudwatch:PutMetricData"
]
Resource = "*"
Condition = {
StringEquals = {
"cloudwatch:namespace" = "NovaRewards"
}
}
}
]
})
}
# Data sources for current AWS account and region
data "aws_caller_identity" "current" {}
data "aws_region" "current" {}