You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 15, 2023. It is now read-only.
Per the documentation, I ran "go install ./..." in the project directory to install the etcd-aws-cfn tool. I got this error:
go install ./...
# github.com/crewjam/etcd-aws/aws
aws/health.go:24: cannot use cloudformation.String("1") (type *cloudformation.St
ringExpr) as type *cloudformation.IntegerExpr in field value
aws/health.go:33: cannot use cloudformation.String("60") (type *cloudformation.S
tringExpr) as type *cloudformation.IntegerExpr in field value
aws/health.go:54: cannot use cloudformation.String("1") (type *cloudformation.St
ringExpr) as type *cloudformation.IntegerExpr in field value
aws/health.go:63: cannot use cloudformation.String("300") (type *cloudformation.StringExpr) as type *cloudformation.IntegerExpr in field value
I replaced cfn.String with cfn.Integer in health.go, and compilation succeeded. I am going to test to make sure the tool works as expected, then I'll submit a pull request.
The text was updated successfully, but these errors were encountered:
This is due to upstream changes in go-cloudformation which is in turn due to upstream changes AWS have made in their definition of the CFN schema, so you're on the right track.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Per the documentation, I ran "go install ./..." in the project directory to install the etcd-aws-cfn tool. I got this error:
I replaced cfn.String with cfn.Integer in health.go, and compilation succeeded. I am going to test to make sure the tool works as expected, then I'll submit a pull request.
The text was updated successfully, but these errors were encountered: