Skip to content

Commit

Permalink
Relaxed validation for identifier_uri attribute in azuread_applicatio…
Browse files Browse the repository at this point in the history
…n_identifier_uri resource
  • Loading branch information
kenchan0130 committed Apr 8, 2024
1 parent 57611df commit 60df754
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ func (r ApplicationIdentifierUriResource) Arguments() map[string]*pluginsdk.Sche
},

"identifier_uri": {
Description: "The user-defined URI that uniquely identifies an application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant",
Description: "The user-defined URI or URI-like string that uniquely identifies an application within its Azure AD tenant, or within a verified custom domain if the application is multi-tenant",
Type: pluginsdk.TypeString,
Required: true,
ForceNew: true,
ValidateFunc: validation.IsAppUri,
ValidateFunc: validation.StringIsNotEmpty,
},
}
}
Expand Down

0 comments on commit 60df754

Please sign in to comment.