Skip to content

The CloudFormation Provider Development Toolkit Go Plugin allows you to autogenerate Go code based on an input schema.

Notifications You must be signed in to change notification settings

aws-cloudformation/cloudformation-cli-go-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a96dc21 · Nov 17, 2023
Nov 16, 2023
Nov 16, 2023
Nov 17, 2023
Nov 17, 2023
Jan 19, 2023
Nov 17, 2023
Nov 16, 2023
Nov 17, 2023
Nov 16, 2023
Oct 11, 2019
Dec 4, 2019
Oct 11, 2019
Nov 22, 2019
Oct 11, 2019
Dec 20, 2022
Nov 16, 2023
Oct 15, 2020
Feb 9, 2023
Feb 9, 2023
Jan 19, 2023
Nov 16, 2023

Repository files navigation

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 - this will automatically install the the CloudFormation CLI! A Python virtual environment is recommended.

pip3 install cloudformation-cli-go-plugin

Refer to the documentation for the 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:

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 if you wish to make edits to that. In this case, installing them in one operation works well:

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, 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:

# 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. For more information on installing and setting up your Go environment, please visit the official Golang site.

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

License

This library is licensed under the Apache 2.0 License.

About

The CloudFormation Provider Development Toolkit Go Plugin allows you to autogenerate Go code based on an input schema.

Topics

Resources

Code of conduct

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages