-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
12 changed files
with
125 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
resource "aws_iam_policy" "packer_ssm" { | ||
description = "Policy granting permission for bfd-packer profiled instances to access some common SSM hierarchies" | ||
name = "bfd-${local.env}-packer-ssm" | ||
path = "/" | ||
policy = <<-POLICY | ||
{ | ||
"Statement": [ | ||
{ | ||
"Action": [ | ||
"ssm:GetParametersByPath", | ||
"ssm:GetParameters", | ||
"ssm:GetParameter" | ||
], | ||
"Effect": "Allow", | ||
"Resource": [ | ||
%{for env in local.established_envs~} | ||
"arn:aws:ssm:${local.region}:${local.account_id}:parameter/bfd/${env}/common/*", | ||
%{endfor~} | ||
"arn:aws:ssm:${local.region}:${local.account_id}:parameter/bfd/${local.env}/common/*" | ||
], | ||
"Sid": "BFDProfile" | ||
} | ||
], | ||
"Version": "2012-10-17" | ||
} | ||
POLICY | ||
} | ||
|
||
resource "aws_iam_policy" "packer_kms" { | ||
description = "Policy granting permission for bfd-packer profiled instances to decrypt using mgmt and established environment KMS keys" | ||
name = "bfd-${local.env}-packer-kms" | ||
path = "/" | ||
policy = jsonencode( | ||
{ | ||
"Statement" : [ | ||
{ | ||
"Action" : ["kms:Decrypt"], | ||
"Effect" : "Allow", | ||
"Resource" : concat( | ||
[ | ||
local.bfd_insights_kms_key_id, | ||
local.kms_key_id, | ||
local.tf_state_kms_key_id, | ||
local.test_kms_key_id, | ||
local.prod_sbx_kms_key_id, | ||
local.prod_kms_key_id | ||
], | ||
local.all_kms_config_key_arns | ||
) | ||
} | ||
], | ||
"Version" : "2012-10-17" | ||
} | ||
) | ||
} | ||
|
||
resource "aws_iam_role" "packer" { | ||
assume_role_policy = jsonencode( | ||
{ | ||
Statement = [ | ||
{ | ||
Action = "sts:AssumeRole" | ||
Effect = "Allow" | ||
Principal = { | ||
Service = "ec2.amazonaws.com" | ||
} | ||
}, | ||
] | ||
Version = "2012-10-17" | ||
} | ||
) | ||
description = "Allows EC2 instances to call AWS services on your behalf." | ||
force_detach_policies = false | ||
managed_policy_arns = [ | ||
aws_iam_policy.packer_ssm.arn, | ||
aws_iam_policy.packer_kms.arn, | ||
aws_iam_policy.ec2_instance_tags_ro.arn, | ||
] | ||
max_session_duration = 3600 | ||
name = "bfd-packer" | ||
path = "/" | ||
} | ||
|
||
resource "aws_iam_instance_profile" "packer" { | ||
name = aws_iam_role.packer.name | ||
role = aws_iam_role.packer.name | ||
path = "/" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters