-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
136 additions
and
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,37 @@ | ||
name: Deploy to ECR | ||
name: Deploy to ECS | ||
|
||
on: | ||
push: | ||
branches: | ||
#- main | ||
- 1611-create-elastic-container-service | ||
|
||
permissions: | ||
id-token: write | ||
contents: read | ||
# packages: write | ||
jobs: | ||
deploy: | ||
terraform: | ||
name: Run Terraform | ||
runs-on: ubuntu-latest | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: ./terraform/implementation/ecs | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Check Out Changes | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v1 | ||
- name: Setup Terraform | ||
uses: hashicorp/setup-terraform@v3 | ||
|
||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v1 | ||
- name: configure aws credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
region: us-east-1 | ||
|
||
# - name: Authenticate Docker Registry for ECR | ||
# run: aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin 339712971032.dkr.ecr.us-east-1.amazonaws.com | ||
role-to-assume: ${{ secrets.AWS_ROLE_ARN }} | ||
role-session-name: githubECSDeploymentWorkflow | ||
aws-region: us-east-1 | ||
|
||
- uses: hashicorp/[email protected] | ||
with: | ||
terraform_version: 1.3.3 | ||
- name: Init Terraform | ||
working-directory: ./terraform/implementation/ecs | ||
- name: Load variables | ||
env: | ||
ENVIRONMENT: dev | ||
BUCKET: infra-tfstate-alis-default-aizwjxuh | ||
|
@@ -40,16 +41,15 @@ jobs: | |
PROJECT: infra | ||
shell: bash | ||
run: | | ||
touch $ENVIRONMENT.tfvars | ||
echo "owner = \"$OWNER\"" | ||
echo "project = \"$PROJECT\"" | ||
echo "region = \"$REGION\"" | ||
./ecs.sh -e dev --ci | ||
# - name: Apply Terraform | ||
# working-directory: ./terraform/implementation/ecs | ||
# env: | ||
# ENVIRONMENT: value | ||
# shell: bash | ||
# run: | | ||
# terraform apply -var-file="$ENVIRONMENT.tfvars" | ||
echo "ENVIRONMENT=$ENVIRONMENT" >> .env | ||
echo "BUCKET=infra-tfstate-alis-default-aizwjxuh" >> .env | ||
echo "DYNAMODB_TABLE=infra-tfstate-lock-alis-default-aizwjxuh" >> .env | ||
echo "REGION=us-east-1" >> .env | ||
echo "owner = \"$OWNER\"" >> $ENVIRONMENT.tfvars | ||
echo "project = \"$PROJECT\"" >> $ENVIRONMENT.tfvars | ||
echo "region = \"$REGION\"" >> $ENVIRONMENT.tfvars | ||
- name: Terraform | ||
run: | | ||
ls -lhsa | ||
./ecs.sh -e dev --ci |
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,84 @@ | ||
data "aws_caller_identity" "current" {} | ||
|
||
# # create a role that can be assumed to pull and push docker images from | ||
data "aws_iam_policy_document" "github_assume_role" { | ||
statement { | ||
principals { | ||
type = "Federated" | ||
identifiers = ["arn:aws:iam::${data.aws_caller_identity.current.account_id}:oidc-provider/token.actions.githubusercontent.com"] | ||
} | ||
actions = [ | ||
"sts:AssumeRoleWithWebIdentity" | ||
] | ||
condition { | ||
test = "StringEquals" | ||
variable = "token.actions.githubusercontent.com:aud" | ||
values = ["sts.amazonaws.com",] | ||
} | ||
condition { | ||
test = "StringLike" | ||
variable = "token.actions.githubusercontent.com:sub" | ||
values = [ | ||
"repo:${var.github_repo}:*", | ||
] | ||
} | ||
} | ||
} | ||
|
||
data "aws_iam_policy_document" "github" { | ||
statement { | ||
actions = [ | ||
"appmesh:DescribeMesh", | ||
"appmesh:ListTagsForResource", | ||
"dynamodb:GetItem", | ||
"dynamodb:PutItem", | ||
"dynamodb:DeleteItem", | ||
"ec2:DescribeVpcs", | ||
"ec2:DescribeVpcAttribute", | ||
"ecr:GetAuthorizationToken", | ||
"ecr:DescribeRepositories", | ||
"ecr:ListTagsForResource", | ||
"ecs:DescribeClusters", | ||
"iam:GetRole", | ||
"iam:GetPolicy", | ||
"iam:ListRolePolicies", | ||
"iam:GetPolicyVersion", | ||
"logs:DescribeLogGroups", | ||
"logs:ListTagsLogGroup", | ||
"s3:listBucket", | ||
"s3:PutObject", | ||
"s3:PutObjectAcl", | ||
"s3:GetObject", | ||
"s3:GetObjectAcl", | ||
"s3:GetObjectAttributes", | ||
|
||
] | ||
resources = [ | ||
"*" | ||
# aws_dynamodb_table.tfstate_lock.arn, | ||
# "${aws_dynamodb_table.tfstate_lock.arn}/*", | ||
# aws_s3_bucket.tfstate.arn, | ||
# "${aws_s3_bucket.tfstate.arn}/*", | ||
# "arn:aws:ec2:::", | ||
# "arn:aws:ecr:${var.region}:${data.aws_caller_identity.current.account_id}:repository/*", | ||
# "arn:aws:ecs:${var.region}:${data.aws_caller_identity.current.account_id}:cluster/*", | ||
# "arn:aws:logs:${var.region}:${data.aws_caller_identity.current.account_id}:log-group::*", | ||
# "arn:aws:appmesh:${var.region}:${data.aws_caller_identity.current.account_id}:mesh/*" | ||
] | ||
} | ||
} | ||
|
||
resource "aws_iam_policy" "github" { | ||
name = "${var.project}-github-policy-${var.owner}-${terraform.workspace}" | ||
policy = data.aws_iam_policy_document.github.json | ||
} | ||
|
||
resource "aws_iam_role" "github" { | ||
name = "${var.project}-github-role-${var.owner}-${terraform.workspace}" | ||
assume_role_policy = data.aws_iam_policy_document.github_assume_role.json | ||
} | ||
|
||
resource "aws_iam_role_policy_attachment" "github" { | ||
role = aws_iam_role.github.name | ||
policy_arn = aws_iam_policy.github.arn | ||
} |
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 |
---|---|---|
|
@@ -77,4 +77,4 @@ resource "local_file" "ecs_env" { | |
REGION=${var.region} | ||
EOT | ||
filename = "../ecs/.env" | ||
} | ||
} |
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 |
---|---|---|
|
@@ -9,3 +9,6 @@ variable "region" { | |
type = string | ||
default = "us-east-1" | ||
} | ||
variable "github_repo" { | ||
type = string | ||
} |
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