Created
December 12, 2022 18:26
-
-
Save ei-grad/852ec691d1ceac9173e94f113a51a9ff to your computer and use it in GitHub Desktop.
This file contains hidden or 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
provider "aws" {} | |
# Add a provider for the new member account | |
provider "aws" { | |
alias = "member_account" | |
assume_role { | |
role_arn = "arn:aws:iam::${aws_organizations_account.member_account.id}:role/${var.member_account_role_name}" | |
} | |
} |
This file contains hidden or 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
# Create an IAM user in the management account | |
resource "aws_iam_user" "s3_full_access" { | |
name = "s3-full-access" | |
} | |
data "aws_iam_policy_document" "s3_full_access" { | |
statement { | |
actions = ["sts:AssumeRole"] | |
principal { | |
type = "AWS" | |
identifiers = [aws_iam_user.s3_full_access.arn] | |
} | |
} | |
} | |
# Create an IAM role in the member account | |
resource "aws_iam_role" "s3_full_access" { | |
provider = aws.member_account | |
name = "s3-full-access" | |
assume_role_policy = data.aws_iam_policy_document.s3_full_access.json | |
} | |
# Attach an IAM policy to the role that grants full access to S3 | |
resource "aws_iam_role_policy_attachment" "s3_full_access" { | |
provider = aws.member_account | |
role = aws_iam_role.s3_full_access.name | |
policy_arn = "arn:aws:iam::aws:policy/AmazonS3FullAccess" | |
} |
This file contains hidden or 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
# Create a new AWS member account | |
resource "aws_organizations_account" "member_account" { | |
name = var.member_account_name | |
email = var.member_account_email | |
role_name = var.member_account_role_name | |
depends_on = [aws_organization.org] | |
} |
This file contains hidden or 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
# Declare the input variables | |
variable "member_account_name" { | |
type = string | |
} | |
variable "member_account_email" { | |
type = string | |
} | |
variable "member_account_role_name" { | |
type = string | |
default = "OrganizationAccountAccessRole" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment