Skip to content

Commit

Permalink
fix repo owner to aws-samples
Browse files Browse the repository at this point in the history
  • Loading branch information
humank committed Nov 1, 2021
1 parent 17f61fb commit b3b68ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 138 deletions.
137 changes: 1 addition & 136 deletions deployment/coffeeshop-cdk/cdk.context.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,140 +4,5 @@
"us-west-2b",
"us-west-2c",
"us-west-2d"
],
"vpc-provider:account=584518143473:filter.isDefault=false:filter.tag:Name=CoffeeShopCdkStack/CoffeeShopVPC:region=us-west-2": {
"vpcId": "vpc-01edd8dfac7dc7e27",
"availabilityZones": [
"us-west-2a",
"us-west-2b",
"us-west-2c"
],
"privateSubnetIds": [
"subnet-0ae13b56ad5af18c6",
"subnet-0a2cb9eceec509d9b",
"subnet-0ab4c461aaf45a383"
],
"privateSubnetNames": [
"Private"
],
"privateSubnetRouteTableIds": [
"rtb-0d94980210323a780",
"rtb-01ce73a2535b5c7ed",
"rtb-0a6c199c455b3a914"
],
"publicSubnetIds": [
"subnet-0a530988b5f57e0bc",
"subnet-05bc63e5b5f37d2a9",
"subnet-0b5765cd3c7f3ba70"
],
"publicSubnetNames": [
"Public"
],
"publicSubnetRouteTableIds": [
"rtb-0e796cc07b51fd367",
"rtb-0adca927553a06c9e",
"rtb-0ccf83144d952171f"
]
},
"vpc-provider:account=584518143473:filter.isDefault=false:filter.tag:Name=CoffeeShopCdkStack/CoffeeShopVPC:region=us-west-2:returnAsymmetricSubnets=true": {
"vpcId": "vpc-01edd8dfac7dc7e27",
"availabilityZones": [],
"subnetGroups": [
{
"name": "Public",
"type": "Public",
"subnets": [
{
"subnetId": "subnet-0a530988b5f57e0bc",
"availabilityZone": "us-west-2a",
"routeTableId": "rtb-0e796cc07b51fd367"
},
{
"subnetId": "subnet-05bc63e5b5f37d2a9",
"availabilityZone": "us-west-2b",
"routeTableId": "rtb-0adca927553a06c9e"
},
{
"subnetId": "subnet-0b5765cd3c7f3ba70",
"availabilityZone": "us-west-2c",
"routeTableId": "rtb-0ccf83144d952171f"
}
]
},
{
"name": "Private",
"type": "Private",
"subnets": [
{
"subnetId": "subnet-0ae13b56ad5af18c6",
"availabilityZone": "us-west-2a",
"routeTableId": "rtb-0d94980210323a780"
},
{
"subnetId": "subnet-0a2cb9eceec509d9b",
"availabilityZone": "us-west-2b",
"routeTableId": "rtb-01ce73a2535b5c7ed"
},
{
"subnetId": "subnet-0ab4c461aaf45a383",
"availabilityZone": "us-west-2c",
"routeTableId": "rtb-0a6c199c455b3a914"
}
]
}
]
},
"availability-zones:account=584518143473:region=ap-northeast-1": [
"ap-northeast-1a",
"ap-northeast-1c",
"ap-northeast-1d"
],
"vpc-provider:account=584518143473:filter.isDefault=false:filter.tag:Name=CoffeeShopCdkStack/CoffeeShopVPC:region=ap-northeast-1:returnAsymmetricSubnets=true": {
"vpcId": "vpc-044150c3d1d75fa6c",
"availabilityZones": [],
"subnetGroups": [
{
"name": "Public",
"type": "Public",
"subnets": [
{
"subnetId": "subnet-0290837aa78660b57",
"availabilityZone": "ap-northeast-1a",
"routeTableId": "rtb-0b07ae3e3861212e0"
},
{
"subnetId": "subnet-0bc6d83847adcac75",
"availabilityZone": "ap-northeast-1c",
"routeTableId": "rtb-0c0d3373d50848b63"
},
{
"subnetId": "subnet-0d3f6d98866869313",
"availabilityZone": "ap-northeast-1d",
"routeTableId": "rtb-0d91956bf146098e3"
}
]
},
{
"name": "Private",
"type": "Private",
"subnets": [
{
"subnetId": "subnet-07bdd3977dbb49b3f",
"availabilityZone": "ap-northeast-1a",
"routeTableId": "rtb-00032a01b74a895fb"
},
{
"subnetId": "subnet-0dfb392e1bc4f18fd",
"availabilityZone": "ap-northeast-1c",
"routeTableId": "rtb-0431a259d46859c14"
},
{
"subnetId": "subnet-0ff208dd20e13c315",
"availabilityZone": "ap-northeast-1d",
"routeTableId": "rtb-0a641977774b8a027"
}
]
}
]
}
]
}
4 changes: 2 additions & 2 deletions deployment/coffeeshop-cdk/lib/coffee-shop-code-pipeline.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export class CoffeeShopCodePipeline extends cdk.Stack {
this.ecrRepository.addLifecycleRule({maxImageAge: cdk.Duration.days(30)});

const defaultSource = codebuild.Source.gitHub({
owner: 'humank',
owner: 'aws-samples',
repo: 'designing-cloud-native-microservices-on-aws',
webhook: true, // optional, default: true if `webhookFilteres` were provided, false otherwise
webhookFilters: [
Expand Down Expand Up @@ -100,7 +100,7 @@ export class CoffeeShopCodePipeline extends cdk.Stack {
privileged: true,
},
buildSpec: codebuild.BuildSpec.fromObject({
version: '0.2',
version: 0.2,
phases: {
install:{
'runtime-versions': {
Expand Down
Empty file modified deployment/github-webhook/grant-codebuild-access.sh
100644 → 100755
Empty file.

0 comments on commit b3b68ad

Please sign in to comment.