puppetlabs-aws
puppetlabs-aws copied to clipboard
ec2_securitygroup => cidr doesn't support IPV6 addresses
trafficstars
It looks like the parsing for the cidr entry on an ec2_securitygroup call doens't allow for IPV6 addresses.
ec2_securitygroup { 'name':
ingress => [
protocol => 'tcp', port => 80, cidr => '::/0',
]
}
Returns an error saying CIDR block ::/0 is malformed
The AWS interface allows this IPV6 value in the CIDR block region.
I have this issue too.