ericpardee

Results 13 comments of ericpardee

Same here: epardee@nhan7: ~$ nba-go game ``` ⠇ Loading Game Schedule(node:39754) UnhandledPromiseRejectionWarning: FetchError: request to https://stats.nba.com/stats/teaminfocommon?LeagueID=00&Season=2017-18&SeasonType=Regular%20Season&TeamID=1610612761 failed, reason: read ETIMEDOUT at ClientRequest. (/usr/local/lib/node_modules/nba-go/node_modules/node-fetch/lib/index.js:1345:11) at ClientRequest.emit (events.js:182:13) at TLSSocket.socketErrorListener (_http_client.js:391:9) at...

@duro The docs are definitely hit or miss. Try looking at this example: https://github.com/pulumi/examples/blob/master/aws-apigateway-ts-routes/dns.ts

Also seeing: ``` warning: rotation_enabled is deprecated: Use the aws_secretsmanager_secret_rotation data source instead warning: rotation_lambda_arn is deprecated: Use the aws_secretsmanager_secret_rotation data source instead ``` about: ``` $ pulumi about CLI...

"pulumi state list" is now(_v3.40.0_) `pulumi stack -u`, `-l` is an unknown shorthand flag

I feel the conda ansible module install should work like the conda create command and create the environment if it does not exist. - name: Create virtual environment rtp and...

I was going over this tutorial with a student and the same issue. Versions: ``` sh terraform version Terraform v1.7.1 on darwin_arm64 + provider registry.terraform.io/hashicorp/aws v5.37.0 + provider registry.terraform.io/hashicorp/random v3.1.0...

In case this helps anyone, I maxed out a m5.4xlarge EC2 instance, even with `S3Object` excluded. After running with `--verbose flag`, I found that it was a CloudTrail with a...

I created a VPC and I'm still getting `no matching VPC found` ``` import pulumi import pulumi_aws as aws import pulumi_awsx as awsx vpc = awsx.ec2.Vpc("custom", cidr_block="172.16.8.0/24") pulumi.export("vpcId", vpc.vpc_id) pulumi.export("publicSubnetIds",...

I did, thanks. As @MitchellGerdisch mentioned, it was related to not having a default VPC.