bhouse-nexthop commented on code in PR #282:
URL: 
https://github.com/apache/cloudstack-terraform-provider/pull/282#discussion_r2912467387


##########
cloudstack/resource_cloudstack_network.go:
##########
@@ -209,6 +236,31 @@ func resourceCloudStackNetworkCreate(d 
*schema.ResourceData, meta interface{}) e
                p.SetEndip(endip)
        }
 
+       // IPv6 support
+       if ip6cidr, ok := d.GetOk("ip6cidr"); ok && ip6cidr.(string) != none {
+               m6, err := parseCIDRv6(d, no.Specifyipranges)
+               if err != nil {
+                       return err
+               }
+
+               p.SetIp6cidr(ip6cidr.(string))

Review Comment:
   fixed in 35f14a9



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to