Reputation: 27
I am trying to create a virtual machine from a template in Azure, there are two fields which is blocking me (CIDR field), can someone please have a look into it. unable to by-pass the notion.
Upvotes: 2
Views: 505
Reputation: 1706
Well looking at question, comment and an answer that was provided.
First the problem why you template errored out was because of the values that you put in the template. If you do not specify a value you should be able to just put the information like 10.0.0.0/24 when filling out template and that will work.
Note that the subnets section is only asking for CIDR notation for subnet range.
Upvotes: 1
Reputation: 72151
you must specify you address as a string, not an array:
"10.0.0.0/24"
not sure about the second one, probably the same issue
CIDR: https://es.wikipedia.org/wiki/Classless_Inter-Domain_Routing
Upvotes: 1