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

fix(eks): overly permissive trust policies #25473

Merged
merged 33 commits into from
May 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
be65a30
mid work
iliapolo Apr 30, 2023
1f28d33
Merge branch 'main' into epolon/eks-creation-role-trust-policy
iliapolo May 1, 2023
0e6df1a
test fixes
comcalvi May 2, 2023
42ec407
sdk-call.js
comcalvi May 2, 2023
fabc819
no longer create mastersrole by default
comcalvi May 3, 2023
18cd6f5
package.json
comcalvi May 3, 2023
30e4a05
tests, pt 1
comcalvi May 4, 2023
e8d978a
snapshots
comcalvi May 4, 2023
8cef984
merge conflicts
comcalvi May 5, 2023
19bcca9
integ test conflicts pt2
comcalvi May 5, 2023
4281cc3
snap
comcalvi May 9, 2023
c5a9845
more merge conflicts
comcalvi May 9, 2023
60482e5
stepfunctions
comcalvi May 9, 2023
6c77eba
Merge branch 'main' into epolon/eks-creation-role-trust-policy
comcalvi May 9, 2023
c90b351
cleanup
iliapolo May 10, 2023
94c759b
cleanup
iliapolo May 10, 2023
4e5805d
cleanup
iliapolo May 10, 2023
3942a30
Merge branch 'main' into epolon/eks-creation-role-trust-policy
iliapolo May 10, 2023
9c0f62e
fix unit tests
iliapolo May 10, 2023
870490e
Merge branch 'main' into epolon/eks-creation-role-trust-policy
iliapolo May 10, 2023
4b64e50
snapshots
iliapolo May 10, 2023
bc8665a
Merge branch 'main' into epolon/eks-creation-role-trust-policy
iliapolo May 10, 2023
4b1ce65
Merge branch 'main' into epolon/eks-creation-role-trust-policy
iliapolo May 11, 2023
01d6d05
Merge branch 'main' into epolon/eks-creation-role-trust-policy
iliapolo May 14, 2023
dd92079
kubectl provider role is not in the main stack
iliapolo May 14, 2023
36d4dfe
remove stale files
iliapolo May 14, 2023
3242e99
fix unit tests
iliapolo May 14, 2023
3bb1c61
snapshots
iliapolo May 15, 2023
3389486
snapshots
iliapolo May 15, 2023
305cc6d
dummy
iliapolo May 15, 2023
248344b
revert dummy
iliapolo May 15, 2023
82512a2
snapshots
iliapolo May 15, 2023
3498490
Merge branch 'main' into epolon/eks-creation-role-trust-policy
iliapolo May 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  

This file was deleted.

Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';
import { EksClient, ResourceEvent, ResourceHandler } from './common';
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';
export declare class ClusterResourceHandler extends ResourceHandler {
get clusterName(): string;
private readonly newProps;
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/* eslint-disable no-console */

// eslint-disable-next-line import/no-extraneous-dependencies
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';
// eslint-disable-next-line import/no-extraneous-dependencies
import * as aws from 'aws-sdk';
import { EksClient, ResourceEvent, ResourceHandler } from './common';
import { compareLoggingProps } from './compareLogging';
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';


const MAX_CLUSTER_NAME_LEN = 100;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';
import * as aws from 'aws-sdk';
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';
export interface EksUpdateId {
/**
* If this field is included in an event passed to "IsComplete", it means we
Expand Down
Loading