You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that the following reference $SELF is invalid because it's referencing the aws::security-group-rules rather than an actual aws::security-group.
I think if the error in this case showed the configuration it might have helped debug this issue. However, I could be convinced that not having @Id on the rules resource is invalid as well. Perhaps both things should happen.
aws::security-group-rules sg-rules
security-group: $(aws::security-group sg)
ingress
security-group: $SELF
...
end
end
The text was updated successfully, but these errors were encountered:
See this issue: perfectsense/gyro-aws-provider#202
The problem is that the following reference
$SELF
is invalid because it's referencing theaws::security-group-rules
rather than an actualaws::security-group
.I think if the error in this case showed the configuration it might have helped debug this issue. However, I could be convinced that not having
@Id
on the rules resource is invalid as well. Perhaps both things should happen.The text was updated successfully, but these errors were encountered: