Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions scaleway/resource_redis_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ func resourceScalewayRedisCluster() *schema.Resource {
Computed: true,
},
"ip": {
Type: schema.TypeString,
Description: "IPv4 network address of the rule (IP network in a CIDR format).",
Required: true,
Type: schema.TypeString,
Description: "IPv4 network address of the rule (IP network in a CIDR format).",
Required: true,
ValidateFunc: validation.IsCIDR,
},
"description": {
Type: schema.TypeString,
Expand Down