This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import cdk = require('@aws-cdk/core'); | |
import ec2 = require( '@aws-cdk/aws-ec2'); | |
import eks = require('@aws-cdk/aws-eks'); | |
import iam = require('@aws-cdk/aws-iam'); | |
export class EksStack extends cdk.Stack { | |
constructor(scope: cdk.Construct, id: string, props?: cdk.StackProps) { | |
super(scope, id, props); | |
const vpc = new ec2.Vpc(this, 'eksClusterVPC'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protoc -I $SRC_DIR (find . -name "*.proto) --go_out=plugins=grpc:$SRC_DIR | |
//or | |
protoc -I $SRC_DIR $SRC_DIR/file-a.proto $SRC_DIR/file-b.proto --go_out=plugins=grpc:$SRC_DIR |