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,
});
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)
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
})
}
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,
});
});
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());
}
}
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
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 string
- The unique name of the resource.
- args CrowdSettingsArgs
- 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 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 string
- The unique name of the resource.
- args CrowdSettingsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CrowdSettingsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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,
});
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),
})
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());
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)
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,
});
type: platform:CrowdSettings
properties:
allowUserToAccessProfile: false
applicationName: string
autoUserCreation: false
directAuthentication: false
enable: false
overrideAllGroupsUponLogin: false
password: string
serverUrl: string
sessionValidationInterval: 0
useDefaultProxy: false
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:
- Application
Name string - The application name configured for JPD in Crowd/JIRA.
- Enable bool
- Use this to enable security integration with Atlassian Crowd or JIRA.
- Password string
- The application password configured for JPD in Crowd/JIRA.
- Server
Url string - The full URL of the server to use.
- Session
Validation doubleInterval - 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 boolTo Access Profile - 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 boolCreation - 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 isfalse
. - Override
All boolGroups Upon Login - When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is
false
. - Use
Default boolProxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- Application
Name string - The application name configured for JPD in Crowd/JIRA.
- Enable bool
- Use this to enable security integration with Atlassian Crowd or JIRA.
- Password string
- The application password configured for JPD in Crowd/JIRA.
- Server
Url string - The full URL of the server to use.
- Session
Validation float64Interval - 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 boolTo Access Profile - 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 boolCreation - 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 isfalse
. - Override
All boolGroups Upon Login - When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is
false
. - Use
Default boolProxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- application
Name String - The application name configured for JPD in Crowd/JIRA.
- enable Boolean
- Use this to enable security integration with Atlassian Crowd or JIRA.
- password String
- The application password configured for JPD in Crowd/JIRA.
- server
Url String - The full URL of the server to use.
- session
Validation DoubleInterval - 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 BooleanTo Access Profile - 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 BooleanCreation - 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 Boolean - This corresponds to 'Users Management Server' option in Artifactory UI (
true
= JIRA,false
= Crowd). Default value isfalse
. - override
All BooleanGroups Upon Login - When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is
false
. - use
Default BooleanProxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- application
Name string - The application name configured for JPD in Crowd/JIRA.
- enable boolean
- Use this to enable security integration with Atlassian Crowd or JIRA.
- password string
- The application password configured for JPD in Crowd/JIRA.
- server
Url string - The full URL of the server to use.
- session
Validation numberInterval - 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 booleanTo Access Profile - 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 booleanCreation - 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 boolean - This corresponds to 'Users Management Server' option in Artifactory UI (
true
= JIRA,false
= Crowd). Default value isfalse
. - override
All booleanGroups Upon Login - When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is
false
. - use
Default booleanProxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- application_
name str - The application name configured for JPD in Crowd/JIRA.
- enable bool
- Use this to enable security integration with Atlassian Crowd or JIRA.
- password str
- The application password configured for JPD in Crowd/JIRA.
- server_
url str - The full URL of the server to use.
- session_
validation_ floatinterval - 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_ boolto_ access_ profile - 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_ boolcreation - 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 isfalse
. - override_
all_ boolgroups_ upon_ login - When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is
false
. - use_
default_ boolproxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- application
Name String - The application name configured for JPD in Crowd/JIRA.
- enable Boolean
- Use this to enable security integration with Atlassian Crowd or JIRA.
- password String
- The application password configured for JPD in Crowd/JIRA.
- server
Url String - The full URL of the server to use.
- session
Validation NumberInterval - 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 BooleanTo Access Profile - 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 BooleanCreation - 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 Boolean - This corresponds to 'Users Management Server' option in Artifactory UI (
true
= JIRA,false
= Crowd). Default value isfalse
. - override
All BooleanGroups Upon Login - When a user logs in with CROWD, only groups retrieved from CROWD will be associated with the user. Default value is
false
. - use
Default BooleanProxy - 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
- 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 - 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 string - The application name configured for JPD in Crowd/JIRA.
- Auto
User boolCreation - 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 isfalse
. - Enable bool
- Use this to enable security integration with Atlassian Crowd or JIRA.
- Override
All boolGroups Upon Login - 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.
- Server
Url string - The full URL of the server to use.
- Session
Validation doubleInterval - 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 boolProxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- Allow
User boolTo Access Profile - 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 string - The application name configured for JPD in Crowd/JIRA.
- Auto
User boolCreation - 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 isfalse
. - Enable bool
- Use this to enable security integration with Atlassian Crowd or JIRA.
- Override
All boolGroups Upon Login - 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.
- Server
Url string - The full URL of the server to use.
- Session
Validation float64Interval - 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 boolProxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- allow
User BooleanTo Access Profile - 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 String - The application name configured for JPD in Crowd/JIRA.
- auto
User BooleanCreation - 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 Boolean - This corresponds to 'Users Management Server' option in Artifactory UI (
true
= JIRA,false
= Crowd). Default value isfalse
. - enable Boolean
- Use this to enable security integration with Atlassian Crowd or JIRA.
- override
All BooleanGroups Upon Login - 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.
- server
Url String - The full URL of the server to use.
- session
Validation DoubleInterval - 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 BooleanProxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- allow
User booleanTo Access Profile - 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 string - The application name configured for JPD in Crowd/JIRA.
- auto
User booleanCreation - 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 boolean - This corresponds to 'Users Management Server' option in Artifactory UI (
true
= JIRA,false
= Crowd). Default value isfalse
. - enable boolean
- Use this to enable security integration with Atlassian Crowd or JIRA.
- override
All booleanGroups Upon Login - 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.
- server
Url string - The full URL of the server to use.
- session
Validation numberInterval - 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 booleanProxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- allow_
user_ boolto_ access_ profile - 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_ boolcreation - 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 isfalse
. - enable bool
- Use this to enable security integration with Atlassian Crowd or JIRA.
- override_
all_ boolgroups_ upon_ login - 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_ floatinterval - 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_ boolproxy - If a default proxy definition exists, it is used to pass through to the Crowd Server. Default value is
false
.
- allow
User BooleanTo Access Profile - 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 String - The application name configured for JPD in Crowd/JIRA.
- auto
User BooleanCreation - 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 Boolean - This corresponds to 'Users Management Server' option in Artifactory UI (
true
= JIRA,false
= Crowd). Default value isfalse
. - enable Boolean
- Use this to enable security integration with Atlassian Crowd or JIRA.
- override
All BooleanGroups Upon Login - 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.
- server
Url String - The full URL of the server to use.
- session
Validation NumberInterval - 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 BooleanProxy - 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
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.