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
Deploying a vpcRoute without gatewayId set goes through the nix phase, and fails in the python part. I guess it should be checked for null in the nix phase
e.g.
resources.vpcRoutes.myRoute = {
region = ...
routeTableId = ...
destinationCidrBlock = ..
}
=> UnboundLocalError: local variable 'target' referenced before assignment
resources.vpcRoutes.myRoute = {
region = ...
routeTableId = ...
destinationCidrBlock = ..
gatewayId = ...
}
=> OK
The text was updated successfully, but these errors were encountered:
Deploying a
vpcRoute
withoutgatewayId
set goes through the nix phase, and fails in the python part. I guess it should be checked for null in the nix phasee.g.
The text was updated successfully, but these errors were encountered: