Skip to content

Commit

Permalink
terraform config for s3 static hosting
Browse files Browse the repository at this point in the history
  • Loading branch information
i-dipanshu committed Aug 6, 2023
0 parents commit 3d17e3a
Show file tree
Hide file tree
Showing 43 changed files with 3,880 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/deploy_to_s3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Deploy Static Site to S3

on:
push:
branches:
- main

jobs:
deploy-to-s3:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{secrets.AWS_REGION}}

- name: Deploy to S3
run: |
aws s3 sync demo_static_site ${{secrets.BUCKET_URL}} --delete
# TODO
# - name: Invalidate CloudFront cache
# run: |
# aws cloudfront create-invalidation --distribution-id ${{secrets.CLOULDFRONT_DESTRIBUTION_I}} --paths "/*"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.terraform
.terraform.lock.hcl
1 change: 1 addition & 0 deletions acm_cert.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// TODO
7 changes: 7 additions & 0 deletions backend.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
terraform {
backend "s3" {
bucket = "terraform-central-backend"
key = "state_files"
region = "us-east-2"
}
}
1 change: 1 addition & 0 deletions cloudfront.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// TODO
1,556 changes: 1,556 additions & 0 deletions demo_static_site/css/bootstrap-icons.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions demo_static_site/css/bootstrap.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit 3d17e3a

Please sign in to comment.