├── automatic-validating-pull-requests ├── base-temalate.yml └── pipeline.yml ├── cloudformation-templates ├── DependsOn ├── Document - StackSets ├── cf-error.yaml ├── cf-vpc.yaml ├── creationpolicy.yaml ├── nested.txt ├── parameters.txt ├── parameterv2 ├── rollback ├── rollback-2 ├── s3-deletion-policy.json ├── s3.txt └── waitcondition.yaml ├── kplabs-myrepo-c ├── buildspec.yml └── kplabs.cpp └── kplabs-myrepo-python ├── HelloWorld.py └── buildspec.yml /automatic-validating-pull-requests/base-temalate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/automatic-validating-pull-requests/base-temalate.yml -------------------------------------------------------------------------------- /automatic-validating-pull-requests/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/automatic-validating-pull-requests/pipeline.yml -------------------------------------------------------------------------------- /cloudformation-templates/DependsOn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/DependsOn -------------------------------------------------------------------------------- /cloudformation-templates/Document - StackSets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/Document - StackSets -------------------------------------------------------------------------------- /cloudformation-templates/cf-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/cf-error.yaml -------------------------------------------------------------------------------- /cloudformation-templates/cf-vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/cf-vpc.yaml -------------------------------------------------------------------------------- /cloudformation-templates/creationpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/creationpolicy.yaml -------------------------------------------------------------------------------- /cloudformation-templates/nested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/nested.txt -------------------------------------------------------------------------------- /cloudformation-templates/parameters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/parameters.txt -------------------------------------------------------------------------------- /cloudformation-templates/parameterv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/parameterv2 -------------------------------------------------------------------------------- /cloudformation-templates/rollback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/rollback -------------------------------------------------------------------------------- /cloudformation-templates/rollback-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/rollback-2 -------------------------------------------------------------------------------- /cloudformation-templates/s3-deletion-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/s3-deletion-policy.json -------------------------------------------------------------------------------- /cloudformation-templates/s3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/s3.txt -------------------------------------------------------------------------------- /cloudformation-templates/waitcondition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/cloudformation-templates/waitcondition.yaml -------------------------------------------------------------------------------- /kplabs-myrepo-c/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/kplabs-myrepo-c/buildspec.yml -------------------------------------------------------------------------------- /kplabs-myrepo-c/kplabs.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | std::cout << "Hello, World!\n"; 6 | } 7 | -------------------------------------------------------------------------------- /kplabs-myrepo-python/HelloWorld.py: -------------------------------------------------------------------------------- 1 | print("This line will be printed.") 2 | -------------------------------------------------------------------------------- /kplabs-myrepo-python/buildspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zealvora/aws-devops-engineer-professional-resources/HEAD/kplabs-myrepo-python/buildspec.yml --------------------------------------------------------------------------------