-
Notifications
You must be signed in to change notification settings - Fork 4k
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
feat(ssm): add ability to specify SSM Parameter tier #6326
feat(ssm): add ability to specify SSM Parameter tier #6326
Conversation
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
51764bb
to
036e173
Compare
Rebased and updated commit messages. |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
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.
We should separate out the "chore" and "feat" PRs. The changelog is auto-generated based on commit titles and these 2 commits will be squashed together under our normal process.
Sorry, I missed your comment about PR splitting. I’ll do that later today
for sure.
…On Tue, Feb 18, 2020 at 11:52 AM Mitchell Valine ***@***.***> wrote:
***@***.**** requested changes on this pull request.
We should separate out the "chore" and "feat" PRs. The changelog is
auto-generated based on commit titles and these 2 commits will be squashed
together under our normal process.
------------------------------
In ***@***.***/aws-ssm/lib/parameter.ts
<#6326 (comment)>:
> const resource = new ssm.CfnParameter(this, 'Resource', {
allowedPattern: props.allowedPattern,
description: props.description,
name: this.physicalName,
+ tier: props.tier || undefined,
since props.tier is possibly undefined, isn't props.tier || undefined
equivalent to props.tier ?
------------------------------
In ***@***.***/aws-ssm/lib/parameter.ts
<#6326 (comment)>:
> const resource = new ssm.CfnParameter(this, 'Resource', {
allowedPattern: props.allowedPattern,
description: props.description,
name: this.physicalName,
+ tier: props.tier || undefined,
same as above, props.tier should suffice.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#6326?email_source=notifications&email_token=AAAHWN72TUFAN4WBHLPAXW3RDQ377A5CNFSM4KW666L2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOCV7LCDI#pullrequestreview-360624397>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAHWN3HNMVNMFFMYPLLQZTRDQ377ANCNFSM4KW666LQ>
.
|
036e173
to
074130a
Compare
Pull request has been modified.
@MrArnoldPalmer |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request is now being automatically merged. |
There are two separate PRs here:
feat(aws-ssm): add ability to specify SSM Parameter tier
This PR allows to specify SSM Parameter tier
Advanced | Intelligent-Tiering | Standard
as specified in the docs.chore(aws-ssm): add checks for parameter name and description length
Added checks for SSM Parameter description and name length.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license