Reputation: 129
I'm one question about networking on Google Compute Engine.
Is there any possibility to set default "Source tag / IP range" on your account to get this value automatically set when new rules is created?
For example, if I create this rule:
gcloud beta compute firewall-rules create "test-net1-ssh-in" \
--allow tcp:22 \
--network "test-net1" \
--source-ranges "0.0.0.0/0" \
--target-tags "ssh-servers"
Will replaced (automatically of course) by:
gcloud beta compute firewall-rules create "test-net1-ssh-in" \
--allow tcp:22 \
--network "test-net1" \
--source-ranges "8.8.8.8/32" \
--target-tags "ssh-servers"
And why this should be useful? Because we want that every rule created on the platform, custom rules or auto-generated rules (from kubernetes cluster) will allow only or testing computer IP
Any help will be much appreciated.
Thanks :)
Upvotes: 1
Views: 201
Reputation: 13387
This isn't an option in Google Compute Engine at the moment, but the feature that you're looking for will at least be worked on in Kubernetes soon.
Upvotes: 1