Skip to content

Commit

Permalink
Fixing schema, and adding changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
JaylonmcShan03 committed Jan 14, 2025
1 parent 2df5186 commit dd05728
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/2557.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
`resource/Kubernetes_Persistent_VolumeClaim_V1`: Add argument `spec.ip_mode`
```
6 changes: 4 additions & 2 deletions kubernetes/resource_kubernetes_service_v1.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,8 +317,10 @@ func resourceKubernetesServiceSchemaV1() map[string]*schema.Schema {
Computed: true,
},
"ip_mode": {
Type: schema.TypeString,
Computed: true,
Type: schema.TypeString,
Optional: true,
Default: "VIP",
ValidateFunc: validation.StringInSlice([]string{"VIP", "Proxy"}, false),
},
"hostname": {
Type: schema.TypeString,
Expand Down

0 comments on commit dd05728

Please sign in to comment.