What's wrong with this syntax? ``` eks_cluster_se...
# python
e
What's wrong with this syntax?
Copy code
eks_cluster_security_group = ec2.SecurityGroup(environment+"-eks-cluster-sg",
    description="EKS cluster communication with worker nodes"
    egress=[
        { 'protocol': '-1', 'from_port': 0, 'to_port': 0, 'cidr_blocks': ['0.0.0.0/0'] }
    ])
Copy code
File "/home/tsi.lan/eshamay/git/mustang/sdp-mustang-terraform/pulumi/vnext-poc/__main__.py", line 33
        egress=[
             ^
    SyntaxError: invalid syntax
i
You need a comma after the “description=” keyword argument
e
darn, I'm feeling like quite the newb today!
I thought it was something deeper
thanks!
i
no worries! 😄