platform.SamlSettings
Explore with Pulumi AI
Provides a JFrog SAML SSO Settings resource.
~>Only available for self-hosted instances.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
my-okta-saml-settings:
type: platform:SamlSettings
properties:
allowUserToAccessProfile: true
autoRedirect: true
certificate: MIICTjCCA...gPRXbm49Mz4o1nbwH
emailAttribute: email
enable: true
groupAttribute: group
loginUrl: http://tempurl.org/saml
logoutUrl: https://myaccount.okta.com
nameIdAttribute: id
noAutoUserCreation: false
serviceProviderName: okta
syncGroups: true
useEncryptedAssertion: false
verifyAudienceRestriction: true
Create SamlSettings Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SamlSettings(name: string, args: SamlSettingsArgs, opts?: CustomResourceOptions);
@overload
def SamlSettings(resource_name: str,
args: SamlSettingsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SamlSettings(resource_name: str,
opts: Optional[ResourceOptions] = None,
service_provider_name: Optional[str] = None,
login_url: Optional[str] = None,
logout_url: Optional[str] = None,
certificate: Optional[str] = None,
group_attribute: Optional[str] = None,
enable: Optional[bool] = None,
auto_redirect: Optional[bool] = None,
ldap_group_settings: Optional[Sequence[str]] = None,
email_attribute: Optional[str] = None,
auto_user_creation: Optional[bool] = None,
name: Optional[str] = None,
name_id_attribute: Optional[str] = None,
allow_user_to_access_profile: Optional[bool] = None,
sync_groups: Optional[bool] = None,
use_encrypted_assertion: Optional[bool] = None,
verify_audience_restriction: Optional[bool] = None)
func NewSamlSettings(ctx *Context, name string, args SamlSettingsArgs, opts ...ResourceOption) (*SamlSettings, error)
public SamlSettings(string name, SamlSettingsArgs args, CustomResourceOptions? opts = null)
public SamlSettings(String name, SamlSettingsArgs args)
public SamlSettings(String name, SamlSettingsArgs args, CustomResourceOptions options)
type: platform:SamlSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SamlSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SamlSettingsArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SamlSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SamlSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SamlSettingsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var samlSettingsResource = new Platform.SamlSettings("samlSettingsResource", new()
{
ServiceProviderName = "string",
LoginUrl = "string",
LogoutUrl = "string",
Certificate = "string",
GroupAttribute = "string",
Enable = false,
AutoRedirect = false,
LdapGroupSettings = new[]
{
"string",
},
EmailAttribute = "string",
AutoUserCreation = false,
Name = "string",
NameIdAttribute = "string",
AllowUserToAccessProfile = false,
SyncGroups = false,
UseEncryptedAssertion = false,
VerifyAudienceRestriction = false,
});
example, err := platform.NewSamlSettings(ctx, "samlSettingsResource", &platform.SamlSettingsArgs{
ServiceProviderName: pulumi.String("string"),
LoginUrl: pulumi.String("string"),
LogoutUrl: pulumi.String("string"),
Certificate: pulumi.String("string"),
GroupAttribute: pulumi.String("string"),
Enable: pulumi.Bool(false),
AutoRedirect: pulumi.Bool(false),
LdapGroupSettings: pulumi.StringArray{
pulumi.String("string"),
},
EmailAttribute: pulumi.String("string"),
AutoUserCreation: pulumi.Bool(false),
Name: pulumi.String("string"),
NameIdAttribute: pulumi.String("string"),
AllowUserToAccessProfile: pulumi.Bool(false),
SyncGroups: pulumi.Bool(false),
UseEncryptedAssertion: pulumi.Bool(false),
VerifyAudienceRestriction: pulumi.Bool(false),
})
var samlSettingsResource = new SamlSettings("samlSettingsResource", SamlSettingsArgs.builder()
.serviceProviderName("string")
.loginUrl("string")
.logoutUrl("string")
.certificate("string")
.groupAttribute("string")
.enable(false)
.autoRedirect(false)
.ldapGroupSettings("string")
.emailAttribute("string")
.autoUserCreation(false)
.name("string")
.nameIdAttribute("string")
.allowUserToAccessProfile(false)
.syncGroups(false)
.useEncryptedAssertion(false)
.verifyAudienceRestriction(false)
.build());
saml_settings_resource = platform.SamlSettings("samlSettingsResource",
service_provider_name="string",
login_url="string",
logout_url="string",
certificate="string",
group_attribute="string",
enable=False,
auto_redirect=False,
ldap_group_settings=["string"],
email_attribute="string",
auto_user_creation=False,
name="string",
name_id_attribute="string",
allow_user_to_access_profile=False,
sync_groups=False,
use_encrypted_assertion=False,
verify_audience_restriction=False)
const samlSettingsResource = new platform.SamlSettings("samlSettingsResource", {
serviceProviderName: "string",
loginUrl: "string",
logoutUrl: "string",
certificate: "string",
groupAttribute: "string",
enable: false,
autoRedirect: false,
ldapGroupSettings: ["string"],
emailAttribute: "string",
autoUserCreation: false,
name: "string",
nameIdAttribute: "string",
allowUserToAccessProfile: false,
syncGroups: false,
useEncryptedAssertion: false,
verifyAudienceRestriction: false,
});
type: platform:SamlSettings
properties:
allowUserToAccessProfile: false
autoRedirect: false
autoUserCreation: false
certificate: string
emailAttribute: string
enable: false
groupAttribute: string
ldapGroupSettings:
- string
loginUrl: string
logoutUrl: string
name: string
nameIdAttribute: string
serviceProviderName: string
syncGroups: false
useEncryptedAssertion: false
verifyAudienceRestriction: false
SamlSettings Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SamlSettings resource accepts the following input properties:
- Certificate string
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- Login
Url string - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- Logout
Url string - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- Service
Provider stringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- Allow
User boolTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - Auto
Redirect bool - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - Auto
User boolCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - Email
Attribute string - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - Enable bool
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - Group
Attribute string - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- Ldap
Group List<string>Settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- Name string
- SAML Settings name.
- Name
Id stringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- Sync
Groups bool - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - Use
Encrypted boolAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - Verify
Audience boolRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- Certificate string
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- Login
Url string - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- Logout
Url string - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- Service
Provider stringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- Allow
User boolTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - Auto
Redirect bool - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - Auto
User boolCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - Email
Attribute string - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - Enable bool
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - Group
Attribute string - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- Ldap
Group []stringSettings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- Name string
- SAML Settings name.
- Name
Id stringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- Sync
Groups bool - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - Use
Encrypted boolAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - Verify
Audience boolRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- certificate String
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- login
Url String - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- logout
Url String - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- service
Provider StringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- allow
User BooleanTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - auto
Redirect Boolean - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - auto
User BooleanCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - email
Attribute String - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - enable Boolean
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - group
Attribute String - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- ldap
Group List<String>Settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- name String
- SAML Settings name.
- name
Id StringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- sync
Groups Boolean - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - use
Encrypted BooleanAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - verify
Audience BooleanRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- certificate string
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- login
Url string - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- logout
Url string - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- service
Provider stringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- allow
User booleanTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - auto
Redirect boolean - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - auto
User booleanCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - email
Attribute string - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - enable boolean
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - group
Attribute string - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- ldap
Group string[]Settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- name string
- SAML Settings name.
- name
Id stringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- sync
Groups boolean - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - use
Encrypted booleanAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - verify
Audience booleanRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- certificate str
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- login_
url str - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- logout_
url str - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- service_
provider_ strname - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- allow_
user_ boolto_ access_ profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - auto_
redirect bool - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - auto_
user_ boolcreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - email_
attribute str - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - enable bool
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - group_
attribute str - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- ldap_
group_ Sequence[str]settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- name str
- SAML Settings name.
- name_
id_ strattribute - The username attribute used to configure the SSO URL for the identity provider.
- sync_
groups bool - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - use_
encrypted_ boolassertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - verify_
audience_ boolrestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- certificate String
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- login
Url String - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- logout
Url String - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- service
Provider StringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- allow
User BooleanTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - auto
Redirect Boolean - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - auto
User BooleanCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - email
Attribute String - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - enable Boolean
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - group
Attribute String - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- ldap
Group List<String>Settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- name String
- SAML Settings name.
- name
Id StringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- sync
Groups Boolean - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - use
Encrypted BooleanAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - verify
Audience BooleanRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
Outputs
All input properties are implicitly available as output properties. Additionally, the SamlSettings resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SamlSettings Resource
Get an existing SamlSettings resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SamlSettingsState, opts?: CustomResourceOptions): SamlSettings
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_user_to_access_profile: Optional[bool] = None,
auto_redirect: Optional[bool] = None,
auto_user_creation: Optional[bool] = None,
certificate: Optional[str] = None,
email_attribute: Optional[str] = None,
enable: Optional[bool] = None,
group_attribute: Optional[str] = None,
ldap_group_settings: Optional[Sequence[str]] = None,
login_url: Optional[str] = None,
logout_url: Optional[str] = None,
name: Optional[str] = None,
name_id_attribute: Optional[str] = None,
service_provider_name: Optional[str] = None,
sync_groups: Optional[bool] = None,
use_encrypted_assertion: Optional[bool] = None,
verify_audience_restriction: Optional[bool] = None) -> SamlSettings
func GetSamlSettings(ctx *Context, name string, id IDInput, state *SamlSettingsState, opts ...ResourceOption) (*SamlSettings, error)
public static SamlSettings Get(string name, Input<string> id, SamlSettingsState? state, CustomResourceOptions? opts = null)
public static SamlSettings get(String name, Output<String> id, SamlSettingsState state, CustomResourceOptions options)
resources: _: type: platform:SamlSettings get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Allow
User boolTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - Auto
Redirect bool - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - Auto
User boolCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - Certificate string
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- Email
Attribute string - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - Enable bool
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - Group
Attribute string - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- Ldap
Group List<string>Settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- Login
Url string - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- Logout
Url string - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- Name string
- SAML Settings name.
- Name
Id stringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- Service
Provider stringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- Sync
Groups bool - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - Use
Encrypted boolAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - Verify
Audience boolRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- Allow
User boolTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - Auto
Redirect bool - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - Auto
User boolCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - Certificate string
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- Email
Attribute string - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - Enable bool
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - Group
Attribute string - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- Ldap
Group []stringSettings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- Login
Url string - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- Logout
Url string - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- Name string
- SAML Settings name.
- Name
Id stringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- Service
Provider stringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- Sync
Groups bool - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - Use
Encrypted boolAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - Verify
Audience boolRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- allow
User BooleanTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - auto
Redirect Boolean - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - auto
User BooleanCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - certificate String
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- email
Attribute String - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - enable Boolean
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - group
Attribute String - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- ldap
Group List<String>Settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- login
Url String - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- logout
Url String - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- name String
- SAML Settings name.
- name
Id StringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- service
Provider StringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- sync
Groups Boolean - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - use
Encrypted BooleanAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - verify
Audience BooleanRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- allow
User booleanTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - auto
Redirect boolean - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - auto
User booleanCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - certificate string
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- email
Attribute string - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - enable boolean
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - group
Attribute string - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- ldap
Group string[]Settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- login
Url string - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- logout
Url string - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- name string
- SAML Settings name.
- name
Id stringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- service
Provider stringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- sync
Groups boolean - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - use
Encrypted booleanAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - verify
Audience booleanRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- allow_
user_ boolto_ access_ profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - auto_
redirect bool - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - auto_
user_ boolcreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - certificate str
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- email_
attribute str - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - enable bool
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - group_
attribute str - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- ldap_
group_ Sequence[str]settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- login_
url str - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- logout_
url str - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- name str
- SAML Settings name.
- name_
id_ strattribute - The username attribute used to configure the SSO URL for the identity provider.
- service_
provider_ strname - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- sync_
groups bool - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - use_
encrypted_ boolassertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - verify_
audience_ boolrestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
- allow
User BooleanTo Access Profile - When set, auto created users will have access to their profile page and will be able to perform actions such as generating an API key. Default value is
false
. - auto
Redirect Boolean - When set, clicking on the login link will direct users to the configured SAML login URL. Default value is
false
. - auto
User BooleanCreation - When set, authenticated users are automatically created in Artifactory. When not set, for every request from an SSO user, the user is temporarily associated with default groups (if such groups are defined), and the permissions for these groups apply. Without automatic user creation, you must manually create the user inside Artifactory to manage user permissions not attached to their default groups. Default value is
true
. - certificate String
- The certificate for SAML Authentication in Base64 format. NOTE! The certificate must contain the public key to allow Artifactory to verify sign-in requests.
- email
Attribute String - If
no_auto_user_creation
is diabled or an internal user exists, the system will set the user's email to the value in this attribute that is returned by the SAML login XML response. - enable Boolean
- When set, SAML integration is enabled and users may be authenticated via a SAML server. Default value is
true
. - group
Attribute String - The group attribute in the SAML login XML response. Note that the system will search for a case-sensitive match to an existing group..
- ldap
Group List<String>Settings - List of LDAP group setting names. Only support in Artifactory 7.98 or later. See Enabling Synchronization of LDAP Groups for SAML SSO for more details.
- login
Url String - The identity provider login URL (when you try to login, the service provider redirects to this URL).
- logout
Url String - The identity provider logout URL (when you try to logout, the service provider redirects to this URL).
- name String
- SAML Settings name.
- name
Id StringAttribute - The username attribute used to configure the SSO URL for the identity provider.
- service
Provider StringName - The SAML service provider name. This should be a URI that is also known as the entityID, providerID, or entity identity.
- sync
Groups Boolean - When set, in addition to the groups the user is already associated with, he will also be associated with the groups returned in the SAML login response. Note that the user's association with the returned groups is not persistent. It is only valid for the current login session. Default value is
false
. - use
Encrypted BooleanAssertion - When set, an X.509 public certificate will be created by Artifactory. Download this certificate and upload it to your IDP and choose your own encryption algorithm. This process will let you encrypt the assertion section in your SAML response. Default value is
false
. - verify
Audience BooleanRestriction - Set this flag to specify who the assertion is intended for. The "audience" will be the service provider and is typically a URL but can technically be formatted as any string of data. Default value is
true
.
Import
$ pulumi import platform:index/samlSettings:SamlSettings my-okta-saml-settings my-okta-saml-settings
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- platform jfrog/terraform-provider-platform
- License
- Notes
- This Pulumi package is based on the
platform
Terraform Provider.