Skip to content

Commit

Permalink
Set saml_settings 'certificate' attribute as sensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhung committed Oct 7, 2024
1 parent 35e878d commit 0e24fbc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/platform/resource_saml_settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,8 @@ var samlSettingsSchemaV0 = map[string]schema.Attribute{
MarkdownDescription: "When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is `true`.",
},
"certificate": schema.StringAttribute{
Required: true,
Required: true,
Sensitive: true,
Validators: []validator.String{
stringvalidator.LengthAtLeast(1),
},
Expand Down

0 comments on commit 0e24fbc

Please sign in to comment.