Afternoon StackOverflow,
I am trying to build a network on OpenStack using Fog & Ruby but the network I am trying to make is getting made with a gateway, after readying the API Documents here it says to disable the gateway on creation
set the gateway_ip attribute to null in the request body
I tried the following with no luck
@openstack_network.subnets.create(:name => "my-network", :network_id => network.id, :cidr => '240.250.0.0/16', :ip_version => 4, :gateway_ip => nil)
I also tried setting it to 'null'
and ''
.
I'm a bit stuck on what to try and how I can do this so any help is greatly appreciated!