Skip to content

Commit

Permalink
[ignore] Fix mso_schema tenant_id and template_name deprecation message
Browse files Browse the repository at this point in the history
  • Loading branch information
lhercot committed Apr 4, 2023
1 parent 2dd30f2 commit 7ea5ccc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mso/resource_mso_schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ func resourceMSOSchema() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringLenBetween(1, 1000),
Deprecated: "use template by specifying a name, display_name and tenant_id instead",
Deprecated: "use template block with name, display_name and tenant_id instead",
},
"tenant_id": &schema.Schema{
Type: schema.TypeString,
Optional: true,
ValidateFunc: validation.StringLenBetween(1, 1000),
Deprecated: "use template by specifying a name, display_name and tenant_id instead",
Deprecated: "use template block with name, display_name and tenant_id instead",
},
"template": &schema.Schema{
Type: schema.TypeSet,
Expand Down

0 comments on commit 7ea5ccc

Please sign in to comment.