├── .github └── workflows │ └── manual.yml ├── CODEOWNERS ├── README.md ├── lesson-1-Getting Started with CloudFormation ├── IAM Role Solution.txt ├── challenge1-parameters.json └── challenge1.yml ├── lesson-2-Infrastructure as Code └── Diagram Exercise Solution.jpeg ├── lesson-3-Networking Infrastructure ├── challenge2-solution-parameters.json ├── challenge2-solution.yml ├── private-network-parameters.json └── private-network.yml ├── lesson-4-Servers and Security Groups ├── SSM Parameters Solution.txt ├── challenge3-parameters.json └── challenge3.yml └── lesson-5-Storage and Databases ├── IP Restricted S3 Bucket Solution.txt ├── RDS Database Solution.txt ├── RDSTemplate.yml ├── RDSparameters.json └── ipbucket.json /.github/workflows/manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/.github/workflows/manual.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/README.md -------------------------------------------------------------------------------- /lesson-1-Getting Started with CloudFormation/IAM Role Solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-1-Getting Started with CloudFormation/IAM Role Solution.txt -------------------------------------------------------------------------------- /lesson-1-Getting Started with CloudFormation/challenge1-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-1-Getting Started with CloudFormation/challenge1-parameters.json -------------------------------------------------------------------------------- /lesson-1-Getting Started with CloudFormation/challenge1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-1-Getting Started with CloudFormation/challenge1.yml -------------------------------------------------------------------------------- /lesson-2-Infrastructure as Code/Diagram Exercise Solution.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-2-Infrastructure as Code/Diagram Exercise Solution.jpeg -------------------------------------------------------------------------------- /lesson-3-Networking Infrastructure/challenge2-solution-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-3-Networking Infrastructure/challenge2-solution-parameters.json -------------------------------------------------------------------------------- /lesson-3-Networking Infrastructure/challenge2-solution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-3-Networking Infrastructure/challenge2-solution.yml -------------------------------------------------------------------------------- /lesson-3-Networking Infrastructure/private-network-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-3-Networking Infrastructure/private-network-parameters.json -------------------------------------------------------------------------------- /lesson-3-Networking Infrastructure/private-network.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-3-Networking Infrastructure/private-network.yml -------------------------------------------------------------------------------- /lesson-4-Servers and Security Groups/SSM Parameters Solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-4-Servers and Security Groups/SSM Parameters Solution.txt -------------------------------------------------------------------------------- /lesson-4-Servers and Security Groups/challenge3-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-4-Servers and Security Groups/challenge3-parameters.json -------------------------------------------------------------------------------- /lesson-4-Servers and Security Groups/challenge3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-4-Servers and Security Groups/challenge3.yml -------------------------------------------------------------------------------- /lesson-5-Storage and Databases/IP Restricted S3 Bucket Solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-5-Storage and Databases/IP Restricted S3 Bucket Solution.txt -------------------------------------------------------------------------------- /lesson-5-Storage and Databases/RDS Database Solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-5-Storage and Databases/RDS Database Solution.txt -------------------------------------------------------------------------------- /lesson-5-Storage and Databases/RDSTemplate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-5-Storage and Databases/RDSTemplate.yml -------------------------------------------------------------------------------- /lesson-5-Storage and Databases/RDSparameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-5-Storage and Databases/RDSparameters.json -------------------------------------------------------------------------------- /lesson-5-Storage and Databases/ipbucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/udacity/nd9991-c2-Infrastructure-as-Code-v1-Exercises_Solution/HEAD/lesson-5-Storage and Databases/ipbucket.json --------------------------------------------------------------------------------