Hey all, I’ve setup a new cloud service using `@pu...
# general
h
Hey all, I’ve setup a new cloud service using
@pulumi/cloud-aws
. The service launches correctly and works however my app can’t make external http requests. Trying to connect to google for example, causes an I/O timeout error. The service is written in go (works as expected locally). I’m using the following config:
Copy code
const site = new cloud.Service('site', {
  containers: {
    site: {
      image: imageName,
      memory: 128,
      ports: [{ port: 80 }],
      environment: {
        ENV: 'production',
      },
    },
  },
});
Nothing stands out in terms of VPC configs so I’m curious if pulumi/teraform defaults to a setting which blocks external requests which I’m not seeing?
s
Hi Andy. Did you solve your problem or is it still an issue?
h
It’s still an issue. Can’t see any options that I’m missing