Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aws-cloudformation/cloudformation-cli-go-plugin
The CloudFormation Provider Development Toolkit Go Plugin allows you to autogenerate Go code based on an input schema.
https://github.com/aws-cloudformation/cloudformation-cli-go-plugin
cloudformation-cli go resources
Last synced: 3 months ago
JSON representation
The CloudFormation Provider Development Toolkit Go Plugin allows you to autogenerate Go code based on an input schema.
- Host: GitHub
- URL: https://github.com/aws-cloudformation/cloudformation-cli-go-plugin
- Owner: aws-cloudformation
- Created: 2018-12-24T19:44:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-08T17:50:21.000Z (11 months ago)
- Last Synced: 2024-07-18T20:34:47.559Z (4 months ago)
- Topics: cloudformation-cli, go, resources
- Language: Go
- Homepage:
- Size: 340 KB
- Stars: 52
- Watchers: 24
- Forks: 31
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-cloudformation - cloudformation-cli-go-plugin
README
## AWS CloudFormation Resource Provider Go Plugin
The CloudFormation CLI (cfn) allows you to author your own resource providers that can be used by CloudFormation.
This plugin library helps to provide Go runtime bindings for the execution of your providers by CloudFormation.
Usage
-----If you are using this package to build resource providers for CloudFormation, install the [CloudFormation CLI Go Plugin](https://github.com/aws-cloudformation/cloudformation-cli-go-plugin) - this will automatically install the the [CloudFormation CLI](https://github.com/aws-cloudformation/cloudformation-cli)! A Python virtual environment is recommended.
```bash
pip3 install cloudformation-cli-go-plugin
```Refer to the documentation for the [CloudFormation CLI](https://github.com/aws-cloudformation/cloudformation-cli) for usage instructions.
Development
-----------For changes to the plugin, a Python virtual environment is recommended. Check out and install the plugin in editable mode:
```bash
python3 -m venv env
source env/bin/activate
pip3 install -e /path/to/cloudformation-cli-go-plugin
```You may also want to check out the [CloudFormation CLI](https://github.com/aws-cloudformation/cloudformation-cli) if you wish to make edits to that. In this case, installing them in one operation works well:
```bash
pip3 install \
-e /path/to/cloudformation-cli \
-e /path/to/cloudformation-cli-go-plugin
```That ensures neither is accidentally installed from PyPI.
Linting and running unit tests is done via [pre-commit](https://pre-commit.com/), and so is performed automatically on commit. The continuous integration also runs these checks. Manual options are available so you don't have to commit:
```bash
# run all hooks on all files, mirrors what the CI runs
pre-commit run --all-files
# run unit tests only. can also be used for other hooks, e.g. black, isort, pytest-local
pre-commit run pytest-local
```Use `./generate-examples.sh` to run install `cloudformation-cli-go-plugin` locally and run `cfn generate` in each example.
Getting started
---------------This plugin create a sample Go project and requires golang 1.8 or above and [godep](https://golang.github.io/dep/docs/introduction.html). For more information on installing and setting up your Go environment, please visit the official [Golang site](https://golang.org/).
Community
---------------Join us on Discord! Connect & interact with CloudFormation developers &
experts, find channels to discuss and get help for cfn-lint, CloudFormation registry, StackSets,
Guard and more:[![Join our Discord](https://discordapp.com/api/guilds/981586120448020580/widget.png?style=banner3)](https://discord.gg/9zpd7TTRwq)
License
-------This library is licensed under the Apache 2.0 License.