We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2f447e commit 78dca32Copy full SHA for 78dca32
1 file changed
modules/testing/default.nix
@@ -184,6 +184,15 @@ in
184
openstack security group rule create --proto icmp default
185
openstack security group rule create --proto tcp --dst-port 22 default
186
187
+ # create a dedicated security group to avoid run time race conditions with name >default<
188
+ openstack security group create testsg
189
+ openstack security group rule create testsg \
190
+ --protocol tcp --dst-port 22 --ingress --remote-ip 0.0.0.0/0
191
192
+ --protocol icmp --ingress --remote-ip 0.0.0.0/0
193
194
+ --protocol tcp --egress --remote-ip 0.0.0.0/0
195
+
196
mkdir -p /root/.ssh/
197
ssh-keygen -q -N "" -t rsa -f /root/.ssh/id_rsa
198
openstack keypair create --public-key ~/.ssh/id_rsa.pub mykey
0 commit comments