https://pulumi.com logo
h

hallowed-king-98702

03/05/2019, 9:39 PM
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

stocky-island-3676

03/06/2019, 10:35 AM
Hi Andy. Did you solve your problem or is it still an issue?
h

hallowed-king-98702

03/07/2019, 3:16 AM
It’s still an issue. Can’t see any options that I’m missing