1. Packages
  2. Platform Provider
  3. API Docs
  4. CrowdSettings
platform 2.2.2 published on Thursday, Apr 3, 2025 by jfrog

platform.CrowdSettings

Explore with Pulumi AI

Provides a JFrog Crowd Settings resource. This allows you to delegate authentication requests to Atlassian Crowd/JIRA, use authenticated Crowd/JIRA users and have the JPD participate in a transparent SSO environment managed by Crowd/JIRA.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as platform from "@pulumi/platform";

const my_crowd_settings = new platform.CrowdSettings("my-crowd-settings", {
    allowUserToAccessProfile: false,
    applicationName: "my-crowd-settings",
    autoUserCreation: true,
    directAuthentication: true,
    enable: true,
    overrideAllGroupsUponLogin: false,
    password: "my-password",
    serverUrl: "http://tempurl.org",
    sessionValidationInterval: 5,
    useDefaultProxy: false,
});
Copy
import pulumi
import pulumi_platform as platform

my_crowd_settings = platform.CrowdSettings("my-crowd-settings",
    allow_user_to_access_profile=False,
    application_name="my-crowd-settings",
    auto_user_creation=True,
    direct_authentication=True,
    enable=True,
    override_all_groups_upon_login=False,
    password="my-password",
    server_url="http://tempurl.org",
    session_validation_interval=5,
    use_default_proxy=False)
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/platform/v2/platform"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := platform.NewCrowdSettings(ctx, "my-crowd-settings", &platform.CrowdSettingsArgs{
			AllowUserToAccessProfile:   pulumi.Bool(false),
			ApplicationName:            pulumi.String("my-crowd-settings"),
			AutoUserCreation:           pulumi.Bool(true),
			DirectAuthentication:       pulumi.Bool(true),
			Enable:                     pulumi.Bool(true),
			OverrideAllGroupsUponLogin: pulumi.Bool(false),
			Password:                   pulumi.String("my-password"),
			ServerUrl:                  pulumi.String("http://tempurl.org"),
			SessionValidationInterval:  pulumi.Float64(5),
			UseDefaultProxy:            pulumi.Bool(false),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Platform = Pulumi.Platform;

return await Deployment.RunAsync(() => 
{
    var my_crowd_settings = new Platform.CrowdSettings("my-crowd-settings", new()
    {
        AllowUserToAccessProfile = false,
        ApplicationName = "my-crowd-settings",
        AutoUserCreation = true,
        DirectAuthentication = true,
        Enable = true,
        OverrideAllGroupsUponLogin = false,
        Password = "my-password",
        ServerUrl = "http://tempurl.org",
        SessionValidationInterval = 5,
        UseDefaultProxy = false,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.platform.CrowdSettings;
import com.pulumi.platform.CrowdSettingsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var my_crowd_settings = new CrowdSettings("my-crowd-settings", CrowdSettingsArgs.builder()
            .allowUserToAccessProfile(false)
            .applicationName("my-crowd-settings")
            .autoUserCreation(true)
            .directAuthentication(true)
            .enable(true)
            .overrideAllGroupsUponLogin(false)
            .password("my-password")
            .serverUrl("http://tempurl.org")
            .sessionValidationInterval(5)
            .useDefaultProxy(false)
            .build());

    }
}
Copy
resources:
  my-crowd-settings:
    type: platform:CrowdSettings
    properties:
      allowUserToAccessProfile: false
      applicationName: my-crowd-settings
      autoUserCreation: true
      directAuthentication: true
      enable: true
      overrideAllGroupsUponLogin: false
      password: my-password
      serverUrl: http://tempurl.org
      sessionValidationInterval: 5
      useDefaultProxy: false
Copy

Create CrowdSettings Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CrowdSettings(name: string, args: CrowdSettingsArgs, opts?: CustomResourceOptions);
@overload
def CrowdSettings(resource_name: str,
                  args: CrowdSettingsArgs,
                  opts: Optional[ResourceOptions] = None)

@overload
def CrowdSettings(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  application_name: Optional[str] = None,
                  enable: Optional[bool] = None,
                  password: Optional[str] = None,
                  server_url: Optional[str] = None,
                  session_validation_interval: Optional[float] = None,
                  allow_user_to_access_profile: Optional[bool] = None,
                  auto_user_creation: Optional[bool] = None,
                  direct_authentication: Optional[bool] = None,
                  override_all_groups_upon_login: Optional[bool] = None,
                  use_default_proxy: Optional[bool] = None)
func NewCrowdSettings(ctx *Context, name string, args CrowdSettingsArgs, opts ...ResourceOption) (*CrowdSettings, error)
public CrowdSettings(string name, CrowdSettingsArgs args, CustomResourceOptions? opts = null)
public CrowdSettings(String name, CrowdSettingsArgs args)
public CrowdSettings(String name, CrowdSettingsArgs args, CustomResourceOptions options)
type: platform:CrowdSettings
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CrowdSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CrowdSettingsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CrowdSettingsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CrowdSettingsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CrowdSettingsArgs
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 crowdSettingsResource = new Platform.CrowdSettings("crowdSettingsResource", new()
{
    ApplicationName = "string",
    Enable = false,
    Password = "string",
    ServerUrl = "string",
    SessionValidationInterval = 0,
    AllowUserToAccessProfile = false,
    AutoUserCreation = false,
    DirectAuthentication = false,
    OverrideAllGroupsUponLogin = false,
    UseDefaultProxy = false,
});
Copy
example, err := platform.NewCrowdSettings(ctx, "crowdSettingsResource", &platform.CrowdSettingsArgs{
ApplicationName: pulumi.String("string"),
Enable: pulumi.Bool(false),
Password: pulumi.String("string"),
ServerUrl: pulumi.String("string"),
SessionValidationInterval: pulumi.Float64(0),
AllowUserToAccessProfile: pulumi.Bool(false),
AutoUserCreation: pulumi.Bool(false),
DirectAuthentication: pulumi.Bool(false),
OverrideAllGroupsUponLogin: pulumi.Bool(false),
UseDefaultProxy: pulumi.Bool(false),
})
Copy
var crowdSettingsResource = new CrowdSettings("crowdSettingsResource", CrowdSettingsArgs.builder()
    .applicationName("string")
    .enable(false)
    .password("string")
    .serverUrl("string")
    .sessionValidationInterval(0)
    .allowUserToAccessProfile(false)
    .autoUserCreation(false)
    .directAuthentication(false)
    .overrideAllGroupsUponLogin(false)
    .useDefaultProxy(false)
    .build());
Copy
crowd_settings_resource = platform.CrowdSettings("crowdSettingsResource",
    application_name="string",
    enable=False,
    password="string",
    server_url="string",
    session_validation_interval=0,
    allow_user_to_access_profile=False,
    auto_user_creation=False,
    direct_authentication=False,
    override_all_groups_upon_login=False,
    use_default_proxy=False)
Copy
const crowdSettingsResource = new platform.CrowdSettings("crowdSettingsResource", {
    applicationName: "string",
    enable: false,
    password: "string",
    serverUrl: "string",
    sessionValidationInterval: 0,
    allowUserToAccessProfile: false,
    autoUserCreation: false,
    directAuthentication: false,
    overrideAllGroupsUponLogin: false,
    useDefaultProxy: false,
});
Copy
type: platform:CrowdSettings
properties:
    allowUserToAccessProfile: false
    applicationName: string
    autoUserCreation: false
    directAuthentication: false
    enable: false
    overrideAllGroupsUponLogin: false
    password: string
    serverUrl: string
    sessionValidationInterval: 0
    useDefaultProxy: false
Copy

CrowdSettings 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 CrowdSettings resource accepts the following input properties:

ApplicationName This property is required. string
The application name configured for JPD in Crowd/JIRA.
Enable This property is required. bool
Use this to enable security integration with Atlassian Crowd or JIRA.
Password This property is required. string
The application password configured for JPD in Crowd/JIRA.
ServerUrl This property is required. string
The full URL of the server to use.
SessionValidationInterval This property is required. double
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
AllowUserToAccessProfile bool
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.
AutoUserCreation bool
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
DirectAuthentication bool
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
OverrideAllGroupsUponLogin bool
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
UseDefaultProxy bool
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
ApplicationName This property is required. string
The application name configured for JPD in Crowd/JIRA.
Enable This property is required. bool
Use this to enable security integration with Atlassian Crowd or JIRA.
Password This property is required. string
The application password configured for JPD in Crowd/JIRA.
ServerUrl This property is required. string
The full URL of the server to use.
SessionValidationInterval This property is required. float64
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
AllowUserToAccessProfile bool
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.
AutoUserCreation bool
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
DirectAuthentication bool
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
OverrideAllGroupsUponLogin bool
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
UseDefaultProxy bool
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
applicationName This property is required. String
The application name configured for JPD in Crowd/JIRA.
enable This property is required. Boolean
Use this to enable security integration with Atlassian Crowd or JIRA.
password This property is required. String
The application password configured for JPD in Crowd/JIRA.
serverUrl This property is required. String
The full URL of the server to use.
sessionValidationInterval This property is required. Double
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
allowUserToAccessProfile Boolean
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.
autoUserCreation Boolean
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
directAuthentication Boolean
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
overrideAllGroupsUponLogin Boolean
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
useDefaultProxy Boolean
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
applicationName This property is required. string
The application name configured for JPD in Crowd/JIRA.
enable This property is required. boolean
Use this to enable security integration with Atlassian Crowd or JIRA.
password This property is required. string
The application password configured for JPD in Crowd/JIRA.
serverUrl This property is required. string
The full URL of the server to use.
sessionValidationInterval This property is required. number
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
allowUserToAccessProfile boolean
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.
autoUserCreation boolean
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
directAuthentication boolean
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
overrideAllGroupsUponLogin boolean
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
useDefaultProxy boolean
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
application_name This property is required. str
The application name configured for JPD in Crowd/JIRA.
enable This property is required. bool
Use this to enable security integration with Atlassian Crowd or JIRA.
password This property is required. str
The application password configured for JPD in Crowd/JIRA.
server_url This property is required. str
The full URL of the server to use.
session_validation_interval This property is required. float
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
allow_user_to_access_profile bool
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_user_creation bool
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
direct_authentication bool
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
override_all_groups_upon_login bool
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
use_default_proxy bool
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
applicationName This property is required. String
The application name configured for JPD in Crowd/JIRA.
enable This property is required. Boolean
Use this to enable security integration with Atlassian Crowd or JIRA.
password This property is required. String
The application password configured for JPD in Crowd/JIRA.
serverUrl This property is required. String
The full URL of the server to use.
sessionValidationInterval This property is required. Number
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
allowUserToAccessProfile Boolean
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.
autoUserCreation Boolean
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
directAuthentication Boolean
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
overrideAllGroupsUponLogin Boolean
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
useDefaultProxy Boolean
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.

Outputs

All input properties are implicitly available as output properties. Additionally, the CrowdSettings 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 CrowdSettings Resource

Get an existing CrowdSettings 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?: CrowdSettingsState, opts?: CustomResourceOptions): CrowdSettings
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        allow_user_to_access_profile: Optional[bool] = None,
        application_name: Optional[str] = None,
        auto_user_creation: Optional[bool] = None,
        direct_authentication: Optional[bool] = None,
        enable: Optional[bool] = None,
        override_all_groups_upon_login: Optional[bool] = None,
        password: Optional[str] = None,
        server_url: Optional[str] = None,
        session_validation_interval: Optional[float] = None,
        use_default_proxy: Optional[bool] = None) -> CrowdSettings
func GetCrowdSettings(ctx *Context, name string, id IDInput, state *CrowdSettingsState, opts ...ResourceOption) (*CrowdSettings, error)
public static CrowdSettings Get(string name, Input<string> id, CrowdSettingsState? state, CustomResourceOptions? opts = null)
public static CrowdSettings get(String name, Output<String> id, CrowdSettingsState state, CustomResourceOptions options)
resources:  _:    type: platform:CrowdSettings    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AllowUserToAccessProfile bool
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.
ApplicationName string
The application name configured for JPD in Crowd/JIRA.
AutoUserCreation bool
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
DirectAuthentication bool
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
Enable bool
Use this to enable security integration with Atlassian Crowd or JIRA.
OverrideAllGroupsUponLogin bool
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
Password string
The application password configured for JPD in Crowd/JIRA.
ServerUrl string
The full URL of the server to use.
SessionValidationInterval double
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
UseDefaultProxy bool
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
AllowUserToAccessProfile bool
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.
ApplicationName string
The application name configured for JPD in Crowd/JIRA.
AutoUserCreation bool
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
DirectAuthentication bool
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
Enable bool
Use this to enable security integration with Atlassian Crowd or JIRA.
OverrideAllGroupsUponLogin bool
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
Password string
The application password configured for JPD in Crowd/JIRA.
ServerUrl string
The full URL of the server to use.
SessionValidationInterval float64
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
UseDefaultProxy bool
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
allowUserToAccessProfile Boolean
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.
applicationName String
The application name configured for JPD in Crowd/JIRA.
autoUserCreation Boolean
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
directAuthentication Boolean
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
enable Boolean
Use this to enable security integration with Atlassian Crowd or JIRA.
overrideAllGroupsUponLogin Boolean
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
password String
The application password configured for JPD in Crowd/JIRA.
serverUrl String
The full URL of the server to use.
sessionValidationInterval Double
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
useDefaultProxy Boolean
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
allowUserToAccessProfile boolean
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.
applicationName string
The application name configured for JPD in Crowd/JIRA.
autoUserCreation boolean
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
directAuthentication boolean
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
enable boolean
Use this to enable security integration with Atlassian Crowd or JIRA.
overrideAllGroupsUponLogin boolean
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
password string
The application password configured for JPD in Crowd/JIRA.
serverUrl string
The full URL of the server to use.
sessionValidationInterval number
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
useDefaultProxy boolean
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
allow_user_to_access_profile bool
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.
application_name str
The application name configured for JPD in Crowd/JIRA.
auto_user_creation bool
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
direct_authentication bool
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
enable bool
Use this to enable security integration with Atlassian Crowd or JIRA.
override_all_groups_upon_login bool
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
password str
The application password configured for JPD in Crowd/JIRA.
server_url str
The full URL of the server to use.
session_validation_interval float
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
use_default_proxy bool
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.
allowUserToAccessProfile Boolean
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.
applicationName String
The application name configured for JPD in Crowd/JIRA.
autoUserCreation Boolean
When set, authenticated users are automatically created in Artifactory. When not set, for every request from a Crowd 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 in Artifactory to manage user permissions not attached to their default groups. Default value is true.
directAuthentication Boolean
This corresponds to 'Users Management Server' option in Artifactory UI (true = JIRA, false = Crowd). Default value is false.
enable Boolean
Use this to enable security integration with Atlassian Crowd or JIRA.
overrideAllGroupsUponLogin Boolean
When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is false.
password String
The application password configured for JPD in Crowd/JIRA.
serverUrl String
The full URL of the server to use.
sessionValidationInterval Number
The time window (min) during which the session does not need to be validated. If set to 0, the token expires only when the session expires.
useDefaultProxy Boolean
If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is false.

Import

$ pulumi import platform:index/crowdSettings:CrowdSettings my-crowd-settings my-crowd-settings
Copy

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.