Skip to content

Commit

Permalink
made the name of the cluster network attachment as apply once
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwal-ibm committed Dec 5, 2024
1 parent a4ec51a commit e7f6c63
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ibm/service/vpc/resource_ibm_is_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,10 +324,10 @@ func ResourceIBMISInstance() *schema.Resource {
},
},
"name": &schema.Schema{
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: "The name for this cluster network attachment. Names must be unique within the instance the cluster network attachment resides in. If unspecified, the name will be a hyphenated list of randomly-selected words. Names starting with `ibm-` are reserved for provider-owned resources, and are not allowed.",
Type: schema.TypeString,
Required: true,
DiffSuppressFunc: flex.ApplyOnce,
Description: "The name for this cluster network attachment. Names must be unique within the instance the cluster network attachment resides in. If unspecified, the name will be a hyphenated list of randomly-selected words. Names starting with `ibm-` are reserved for provider-owned resources, and are not allowed.",
},
"href": &schema.Schema{
Type: schema.TypeString,
Expand Down

0 comments on commit e7f6c63

Please sign in to comment.