fix: exclude zero address as for inadmissable cases (#650)
* fix: exclude zero address as for inadmissable cases * fix: review finding
This commit is contained in:
parent
0912ca0246
commit
2ec95dc20f
7 changed files with 61 additions and 9 deletions
|
|
@ -200,7 +200,7 @@ func (r *networkResource) Schema(_ context.Context, _ resource.SchemaRequest, re
|
|||
Optional: true,
|
||||
Computed: true,
|
||||
Validators: []validator.String{
|
||||
validate.IP(),
|
||||
validate.IP(false),
|
||||
},
|
||||
},
|
||||
"ipv4_nameservers": schema.ListAttribute{
|
||||
|
|
@ -252,7 +252,7 @@ func (r *networkResource) Schema(_ context.Context, _ resource.SchemaRequest, re
|
|||
Optional: true,
|
||||
Computed: true,
|
||||
Validators: []validator.String{
|
||||
validate.IP(),
|
||||
validate.IP(false),
|
||||
},
|
||||
},
|
||||
"ipv6_nameservers": schema.ListAttribute{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue