https://github.com/raphaelbh/aws-cloudformation
Proof of concept to demonstrate how to create AWS resources using CloudFormation service.
https://github.com/raphaelbh/aws-cloudformation
aws cloud cloudformation docker
Last synced: 3 months ago
JSON representation
Proof of concept to demonstrate how to create AWS resources using CloudFormation service.
- Host: GitHub
- URL: https://github.com/raphaelbh/aws-cloudformation
- Owner: raphaelbh
- Created: 2022-01-22T22:40:23.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-22T13:05:05.000Z (over 4 years ago)
- Last Synced: 2025-03-20T23:29:31.936Z (over 1 year ago)
- Topics: aws, cloud, cloudformation, docker
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS CloudFormation
[](#)
Proof of concept to demonstrate how to create AWS resources using CloudFormation service.
> AWS CloudFormation is a service that gives developers and businesses an easy way to create a collection of related AWS and third-party resources, and provision and manage them in an orderly and predictable fashion.
When you use AWS CloudFormation, you work with templates and stacks. You create templates to describe your AWS resources and their properties. Whenever you create a stack, CloudFormation provisions the resources that are described in your template.
**Benefits**
- Simplify infrastructure management
- Quickly replicate your infrastructure
- Easily control and track changes to your infrastructure
## Requirements
[](https://www.docker.com/)
## Installation
```bash
$ docker run --rm -it -p 4566:4566 -p 4571:4571 localstack/localstack
```
## Usage
```bash
$ aws cloudformation validate-template --endpoint-url http://localhost:4566 --template-body file://cloudformation/stack.yml
$ aws cloudformation create-stack --endpoint-url http://localhost:4566 --stack-name poc-stack --template-body file://cloudformation/stack.yml
$ aws cloudformation list-stack-resources --endpoint-url http://localhost:4566 --stack-name poc-stack
```
## Tech Stack
[](https://www.docker.com/)
[](https://aws.amazon.com/)
## Reference
- https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/Welcome.html
## Feedback
If you have any feedback, please contact me at raphaeldias.ti@gmail.com
[](https://github.com/raphaelbh)
[](https://www.linkedin.com/in/raphaelbh/)