Skip to content

Commit 0e903a8

Browse files
authored
Merge pull request #590 from ovh/dev/aamstutz/iplb-set
fix: ipLoadbalancing use TypeSet for allowed_source and dedicated_ipfo
2 parents a932c84 + 708a34a commit 0e903a8

2 files changed

+3
-3
lines changed

ovh/resource_iploadbalancing_http_frontend.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func resourceIpLoadbalancingHttpFrontend() *schema.Resource {
3535
ForceNew: false,
3636
},
3737
"allowed_source": {
38-
Type: schema.TypeList,
38+
Type: schema.TypeSet,
3939
Optional: true,
4040
Elem: &schema.Schema{Type: schema.TypeString},
4141
},

ovh/resource_iploadbalancing_tcp_frontend.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ func resourceIpLoadbalancingTcpFrontend() *schema.Resource {
3535
ForceNew: false,
3636
},
3737
"allowed_source": {
38-
Type: schema.TypeList,
38+
Type: schema.TypeSet,
3939
Optional: true,
4040
Elem: &schema.Schema{Type: schema.TypeString},
4141
},
4242
"dedicated_ipfo": {
43-
Type: schema.TypeList,
43+
Type: schema.TypeSet,
4444
Optional: true,
4545
Elem: &schema.Schema{Type: schema.TypeString},
4646
},

0 commit comments

Comments
 (0)