sparse-intern-71089
03/24/2023, 5:43 PMbrash-book-79719
03/24/2023, 5:44 PMconst cluster = new eks.Cluster(clusterName, {
name: clusterName,
vpcId,
publicSubnetIds,
privateSubnetIds,
instanceType: 't4g.medium',
desiredCapacity: 3,
minSize: 3,
maxSize: 10,
deployDashboard: false,
enabledClusterLogTypes: ['api', 'audit', 'authenticator', 'controllerManager', 'scheduler'],
version: '1.24',
createOidcProvider: true,
});
brash-book-79719
03/24/2023, 5:54 PMconst cluster = new eks.Cluster(clusterName);
brash-book-79719
03/24/2023, 7:49 PM~/.aws/config
file had output=yaml_stream
, while this provider assumes json
. It probably should set the env var AWS_DEFAULT_OUTPUT=json
when invoking aws eks get-token
brash-book-79719
03/24/2023, 7:51 PM--output json
brash-book-79719
03/24/2023, 8:15 PMwhite-balloon-205