comment out public_ipv4 on create for now as it's not used yet

This commit is contained in:
forest 2021-12-19 12:44:45 -06:00
parent 2606246420
commit af671355fc
1 changed files with 2 additions and 2 deletions

View File

@ -234,8 +234,8 @@ class ShellScriptSpoke(VirtualizationInterface):
if not re.match(r"^[a-zA-Z0-9_-]+$", network_name):
raise ValueError(f"network_name \"{network_name}\" must match \"^[a-zA-Z0-9_-]+\"")
if not re.match(r"^[0-9.]+$", public_ipv4):
raise ValueError(f"public_ipv4 \"{public_ipv4}\" must match \"^[0-9.]+$\"")
# if not re.match(r"^[0-9.]+$", public_ipv4):
# raise ValueError(f"public_ipv4 \"{public_ipv4}\" must match \"^[0-9.]+$\"")
ssh_keys_string = "\n".join(ssh_authorized_keys)