Skip to content
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(eks): programmatic definition of kubernetes resources #3510

Merged
merged 27 commits into from
Aug 7, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
4b128bb
chore: update package-lock.json
Jul 29, 2019
2a9dd48
feat(eks): define kubernetes resources
Jul 31, 2019
51d2fea
nice!
Aug 1, 2019
a944536
update readme
Aug 1, 2019
386c3d6
Merge remote-tracking branch 'origin/master' into benisrae/eks-kubectl
Aug 1, 2019
91b4305
Update README.md
Aug 1, 2019
7fdb502
feat(events): ability to add cross-account targets (#3323)
skinny85 Aug 1, 2019
d9598a4
chore(ci): add mergify config file (#3502)
NGL321 Aug 1, 2019
27ff73f
chore: update jsii to 0.14.3 (#3513)
shivlaks Aug 1, 2019
a5432e3
fix(iam): correctly limit the default PolicyName to 128 characters (#…
skinny85 Aug 2, 2019
15b806b
v1.3.0 (#3516)
shivlaks Aug 2, 2019
c223827
fix: typo in restapi.ts (#3530)
hoegertn Aug 5, 2019
1ae4c13
feat(ecs): container dependencies (#3032)
Don-CA Aug 5, 2019
297d91a
feat(s3-deployment): CloudFront invalidation (#3213)
hoegertn Aug 5, 2019
75d06fd
docs(core): findChild gets direct child only (#3512)
mirskiy Aug 5, 2019
fd02fc0
doc(iam): update references to addManagedPolicy (#3511)
mirskiy Aug 5, 2019
d2153d9
fix(sqs): do not emit grants to the AWS-managed encryption key (#3169)
RomainMuller Aug 5, 2019
535ab91
fix(lambda): allow ArnPrincipal in grantInvoke (#3501)
IainCole Aug 5, 2019
0200ec8
chore(contrib): remove API stabilization disclaimer
Aug 5, 2019
ede2f8e
fix(ssm): add GetParameters action to grantRead() (#3546)
jogold Aug 6, 2019
c0b74a1
misc
Aug 6, 2019
54bda92
Merge remote-tracking branch 'origin/master' into benisrae/eks-kubectl
Aug 6, 2019
1c1c886
addManifest => addResource
Aug 6, 2019
1f877ea
update test expectations
Aug 6, 2019
0f42503
add unit test for customresrouce.ref
Aug 7, 2019
121ce0f
fix sample link
Aug 7, 2019
a7c86c2
Merge branch 'master' into benisrae/eks-kubectl
mergify[bot] Aug 7, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(ssm): add GetParameters action to grantRead() (#3546)
  • Loading branch information
jogold authored and Elad Ben-Israel committed Aug 6, 2019
commit ede2f8eacd0adeb844f778300327f390778fc385
Original file line number Diff line number Diff line change
Expand Up @@ -359,6 +359,7 @@ export = {
{
Action: [
'ssm:DescribeParameters',
'ssm:GetParameters',
'ssm:GetParameter',
'ssm:GetParameterHistory'
],
Expand Down
7 changes: 6 additions & 1 deletion packages/@aws-cdk/aws-ssm/lib/parameter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,12 @@ abstract class ParameterBase extends Resource implements IParameter {
public grantRead(grantee: iam.IGrantable): iam.Grant {
return iam.Grant.addToPrincipal({
grantee,
actions: ['ssm:DescribeParameters', 'ssm:GetParameter', 'ssm:GetParameterHistory'],
actions: [
'ssm:DescribeParameters',
'ssm:GetParameters',
'ssm:GetParameter',
'ssm:GetParameterHistory'
],
resourceArns: [this.parameterArn],
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
{
"Action": [
"ssm:DescribeParameters",
"ssm:GetParameters",
"ssm:GetParameter",
"ssm:GetParameterHistory"
],
Expand Down