{"id":21410292,"url":"https://github.com/nirmalyax/cloud-resume-project","last_synced_at":"2026-01-27T22:15:23.812Z","repository":{"id":223039720,"uuid":"755054222","full_name":"nirmalyax/Cloud-Resume-Project","owner":"nirmalyax","description":"🚀 Supercharge your website with AWS! 🚀  This guide helps you build blazing-fast 🚀, Fort Knox-secure 🔒, and massively scalable 📈 websites using AWS.  We'll use S3 🪣, Route 53 🚦, CloudFront ⚡️, and ACM 🛡️ to make your site the envy of the internet 😎.","archived":false,"fork":false,"pushed_at":"2024-09-14T14:23:35.000Z","size":1708,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-14T03:01:21.970Z","etag":null,"topics":["acm","aws","cloudfront-distribution","route53","s3-bucket"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nirmalyax.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-02-09T10:47:42.000Z","updated_at":"2024-10-11T17:24:33.000Z","dependencies_parsed_at":"2024-02-17T21:26:07.362Z","dependency_job_id":"f8ac8468-c971-4728-8fe5-546c50876ad1","html_url":"https://github.com/nirmalyax/Cloud-Resume-Project","commit_stats":null,"previous_names":["nirmalyax/cloud-resume-project"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/nirmalyax/Cloud-Resume-Project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nirmalyax%2FCloud-Resume-Project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nirmalyax%2FCloud-Resume-Project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nirmalyax%2FCloud-Resume-Project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nirmalyax%2FCloud-Resume-Project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nirmalyax","download_url":"https://codeload.github.com/nirmalyax/Cloud-Resume-Project/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nirmalyax%2FCloud-Resume-Project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28824039,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-27T18:44:20.126Z","status":"ssl_error","status_checked_at":"2026-01-27T18:44:09.161Z","response_time":168,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["acm","aws","cloudfront-distribution","route53","s3-bucket"],"created_at":"2024-11-22T17:39:04.377Z","updated_at":"2026-01-27T22:15:23.798Z","avatar_url":"https://github.com/nirmalyax.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Résumé using AWS\n\n![alt text](aws.png)\n\n## Overview\n\nThis project involves creating a personal online résumé using AWS services, including S3, Route 53, CloudFront, and ACM (Amazon Certificate Manager). This setup ensures a secure, scalable, and highly available website for showcasing your résumé.\n\nLink : https://resumee.nirmalyax.dev/\n\nproject url: https://roadmap.sh/projects/single-page-cv\n\n## Prerequisites\n\nBefore starting the project, make sure you have the following:\n\n- An AWS account\n- Basic understanding of HTML and web development\n- Domain name registered through Route 53 (optional)\n\n## Clone the Repository\n\nTo get started, clone this GitHub repository to your local machine:\n\n```bash\ngit clone https://github.com/nirmalyax/Cloud-Resume-Project.git\n\ncd your-resume-repo\n```\n\n## Steps to Replicate\n\n### 1. Create S3 Bucket\n\n- Log in to the AWS Management Console.\n- Navigate to the S3 service.\n- Create a new S3 bucket with a unique name.\n- Copy the bucket policy and change the bucket name accordingly.\n\n```bash\n{\n  \"Version\": \"2012-10-17\",\n  \"Statement\": [\n    {\n      \"Sid\": \"PublicReadGetObject\",\n      \"Effect\": \"Allow\",\n      \"Principal\": \"*\",\n      \"Action\": [\n        \"s3:GetObject\"\n      ],\n      \"Resource\": [\n        \"arn:aws:s3:::your-bucket-name/*\"\n      ]\n    }\n  ]\n}\n```\n\n- Upload your résumé HTML file and any other assets to the bucket.\n\n### 2. Configure Route 53 for Custom Domain\n\n- If you have a custom domain registered through Route 53 or another domain registrar, create a new record set in Route 53.\n- Choose the type **A Record** and set the alias target to your S3 bucket.\n  - If you have a CloudFront distribution, you would set the alias target to the CloudFront distribution instead.\n- Save the changes.\n\n### 3. Request and Configure SSL Certificate with ACM\n\n- Navigate to the ACM service in the AWS Management Console.\n- Request a new SSL certificate for your domain.\n- Validate the certificate using DNS validation.\n- Once validated, associate the certificate with your CloudFront distribution.\n\n### 4. Configure CloudFront Distribution\n\n- Navigate to the CloudFront service in the AWS Management Console.\n- Create a new CloudFront distribution.\n- Set the S3 bucket endpoint as the origin for the distribution.\n- Configure default behavior and choose the desired settings.\n- Note the CloudFront distribution domain name.\n\n### 5. Test the Online Résumé\n\n- Once the setup is complete, access your résumé using the CloudFront distribution domain or custom domain if configured.\n- Verify that the website is accessible securely over HTTPS.\n\n## Additional Considerations\n\n- Implement proper security measures, such as restricting public access to the S3 bucket.\n- Optimize your résumé website for performance by leveraging CloudFront caching and compression.\n- Regularly update your résumé and upload new versions to the S3 bucket.\n\n## Conclusion\n\nCongratulations! You have successfully deployed your online résumé using AWS services. Feel free to customize and expand the website based on your preferences and requirements.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnirmalyax%2Fcloud-resume-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnirmalyax%2Fcloud-resume-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnirmalyax%2Fcloud-resume-project/lists"}