Hello all -- I'm trying to bulk import gcp firewa...
# general
f
Hello all -- I'm trying to bulk import gcp firewall resources using >> pulumi import -f Rules.json -d ... {          "type": "gcpcompute/firewallFirewall",          "name": "allow-local",          "id": "7949084422313144519" } ... That results in error: gcpcomputeFirewall (allow-local): error: gcpcompute/firewallFirewall resource 'allow-local' has a problem: ExactlyOne: "allow": one of
allow,deny
must be specified exporting the firewall rule with >>gcloud compute firewall-rules list --format=json produces a valid firewall resource. Using the cli with >>pulumi import gcpcompute/firewallFirewall default projects/my-project/global/firewalls/allow-local produces the same error. This is true for all firewall rules. The vpc resource in the same import returns a valid preview. Thoughts?