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
| url="https://www.sky-tours.com/book.php?lang=br&book=T%3A0%3A0%7C0%3A0&key=GRULIS01%2F29%2F20199900LISGRU02%2F12%2F20199900Y010000&life=259200&api=8DvtxVAx0a24RCclYM98SXNMREhsn7Rttjqw18y%2BADwnCP7f5s%2Fr%2BiR433%2F0GhGy&session=7ffa6218-3fe9-4abb-b334-df2ad0231d74&check=Zqu1N8OWSNSgKJZnr0GKMzdC0Y1diINlC1peKuMVM9l27dG29UP0dfQ8TMa9UvH7mGqgRv7mh6LIeoPQzUKxF%2Byx1tl%2BROygG4DhTsV1%2FdmqjsCRb7GbztH4oEA1ZN5tG58BrBRBTaCLR1y9P5YuIjK64GMD%2Fim8GC2RtGOF1Cw%3D&sdata=mBxS%2B3rVvwH6%2BBlfqs0ln0WWSYlMYEnnJdeo%2Fy8Oad7jWZjj%2BfIHjEg3sc5DBwPDaIAt11ISI3EuqbYV%2BNsmGL5MkFPUhRRyi17soJvXYMU%3D" | |
| # url="https://google.com" | |
| echo "waiting for: $url" | |
| echo "" | |
| while ! (wget -q -O - "$url" > /dev/null) ; do | |
| echo 'failed attempt' | |
| done | |
| while true ; do |
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 * as cdk from 'aws-cdk-lib' | |
| import * as ec2 from 'aws-cdk-lib/aws-ec2' | |
| import * as ecs from 'aws-cdk-lib/aws-ecs' | |
| import * as efs from 'aws-cdk-lib/aws-efs' | |
| import * as logs from 'aws-cdk-lib/aws-logs' | |
| export class BaseStack extends cdk.Stack { | |
| constructor(scope: cdk.App, id: string, environment: Record<string, string>, props?: cdk.StackProps) { | |
| super(scope, id, props) |
OlderNewer