And this: ``` egress: [{ protocol: "-1", ...
# general
f
And this:
Copy code
egress: [{
        protocol: "-1",
        fromPort: 0,
        toPort: 0,
        cidrBlocks: ["0.0.0.0/0"]
    }]
m
This should work
e.g. from `@pulumi/eks`:
Copy code
const allEgress = {
            description: "Allow internet access.",
            fromPort: 0,
            toPort: 0,
            protocol: "-1",  // all
            cidrBlocks: [ "0.0.0.0/0" ],
        };
f
If I look at the Outbound tab in the AWS console, it says "This security group has no rules."
When using that definition.
m
What happens if you run
pulumi refresh
?
Does the SG change?
f
Nope. Checked after running
pulumi refresh
. I then ran
pulumi update
and checked again and still nothing.
m
Do you have services attached to this SG that are unable to access the internet?
f
I'll double check.