UNCLASSIFIED

Skip to content
Snippets Groups Projects
Commit abf52381 authored by John Rollinson's avatar John Rollinson
Browse files

Fixed check for RFC-1918 space.

parent 53172969
No related merge requests found
......@@ -12,8 +12,8 @@ parameters:
constraints:
- length: { min: 6, max: 11 }
description: Subnet prefix must be between 6 and 11 characters
- allowed_pattern: "(192\.168\.[0-9]{1,3})|(10(\.[0-9]{1,3}){2})|(172\.(1[6-9]|2[0-9]|3[1-2])\.[0-9]{1-3})"
description: Subnet must be an RFC-compliant private subnet
- allowed_pattern: "(192\.168\.[0-9]{1,3})|(10(\.[0-9]{1,3}){2})|(172\.(1[6-9]|2[0-9]|3[1-2])\.[0-9]{1,3})"
description: Subnet must be the three-octet prefix for an RFC1918 subnet.
resources:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment