-
Notifications
You must be signed in to change notification settings - Fork 219
Feature/support tagging #181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/support tagging #181
Conversation
|
Looks like this matches the cloudformation template exactly, but it might be nicer syntactically to define the tags as a dictionary (like how lambdas work) and then internally convert it to the array of key/value pairs? Ie instead of more like |
|
@noahw3 I thought about that too, but I have actually seen teams use But what if |
|
If a special character is needed in the actual value (for either key or value), quoting it should be sufficient? YAML supports that. |
|
Base serverless project implementation: https://github.com/serverless/serverless/blob/00d129ca86febcd960b17b19818ac413f7bee4d9/lib/plugins/aws/package/compile/functions/index.js#L135-L145 |
|
@noahw3 ahh, I completely misunderstood you! You meant treat it as an object instead of array, of course, that makes sense :-D |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM @theburningmonk 👍 💯 and thank you for the suggestion @noahw3 😄
|
🎉 This PR is included in version 1.15.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
…ure/support_tagging Feature/support tagging
PR for #166 now that CloudFormation supports tagging for Step Functions