GoFormation 一个用于使用CloudFormation模板的Go库
GoFormation 一个用于使用CloudFormation模板的Go库
v3.1.0
github-actions released this
Assets
2
v3.0.0
PaulMaddox released this
3.0.0 (2019-10-27)
BREAKING CHANGES
- this change moves all Cloudformation resources to
packages based on the AWS service name. The main motivation for this is
that building goformation on some platforms (Windows) failed due to too
many files in the old cloudformation/resources package. This new package
style has a nice benefit of slightly nicer to use API, but is a breaking
change and will require refactoring existing codebases to update to v3.
Old usage:
import "github.com/awslabs/goformation/v2/cloudformation/resources"
... snip ...
topic := &resources.AWSSNSTopic{}
New usage:
import "github.com/awslabs/goformation/v3/cloudformation/sns"
...snip...
topic := &sns.Topic{}
Assets
2
v2.3.0
2.3.0 (2019-03-20)
Bug Fixes
- parser: Unmarshalling of resources with polymorphic properties (like S3 events) now works (#188) (8eff90a)
Features
- sam: Add support for
AWS::Serverless::Api.TracingEnabled
,AWS::Serverless::Function.PermissionsBoundary
,AWS::Serverless::Function.DynamoEvent.Enabled
,AWS::Serverless::Function.KinesisEvent.Enabled
, andAWS::Serverless::Function.SQSEvent.Enabled
(#191) (38f0187) - schema: AWS CloudFormation Update (2019-03-15) (#189) (8b332a4)
Assets
2
热门度与活跃度
1.7
10.0
Watchers:28 |
Star:564 |
Fork:106 |
创建时间: 2017-08-02 00:30:58 |
最后Commits: 前天 |
18ccd0e
4.1.0 (2019-12-09)
Features