published on Monday, Apr 27, 2026 by akeyless-community
published on Monday, Apr 27, 2026 by akeyless-community
Salesforce Target resource
Create TargetSalesforce Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TargetSalesforce(name: string, args: TargetSalesforceArgs, opts?: CustomResourceOptions);@overload
def TargetSalesforce(resource_name: str,
args: TargetSalesforceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TargetSalesforce(resource_name: str,
opts: Optional[ResourceOptions] = None,
client_id: Optional[str] = None,
auth_flow: Optional[str] = None,
tenant_url: Optional[str] = None,
email: Optional[str] = None,
keep_prev_version: Optional[str] = None,
client_secret: Optional[str] = None,
description: Optional[str] = None,
ca_cert_name: Optional[str] = None,
app_private_key_data: Optional[str] = None,
key: Optional[str] = None,
max_versions: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
security_token: Optional[str] = None,
target_salesforce_id: Optional[str] = None,
ca_cert_data: Optional[str] = None)func NewTargetSalesforce(ctx *Context, name string, args TargetSalesforceArgs, opts ...ResourceOption) (*TargetSalesforce, error)public TargetSalesforce(string name, TargetSalesforceArgs args, CustomResourceOptions? opts = null)
public TargetSalesforce(String name, TargetSalesforceArgs args)
public TargetSalesforce(String name, TargetSalesforceArgs args, CustomResourceOptions options)
type: akeyless:TargetSalesforce
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 TargetSalesforceArgs
- 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 TargetSalesforceArgs
- 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 TargetSalesforceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TargetSalesforceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TargetSalesforceArgs
- 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 targetSalesforceResource = new Akeyless.TargetSalesforce("targetSalesforceResource", new()
{
ClientId = "string",
AuthFlow = "string",
TenantUrl = "string",
Email = "string",
KeepPrevVersion = "string",
ClientSecret = "string",
Description = "string",
CaCertName = "string",
AppPrivateKeyData = "string",
Key = "string",
MaxVersions = "string",
Name = "string",
Password = "string",
SecurityToken = "string",
TargetSalesforceId = "string",
CaCertData = "string",
});
example, err := akeyless.NewTargetSalesforce(ctx, "targetSalesforceResource", &akeyless.TargetSalesforceArgs{
ClientId: pulumi.String("string"),
AuthFlow: pulumi.String("string"),
TenantUrl: pulumi.String("string"),
Email: pulumi.String("string"),
KeepPrevVersion: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
Description: pulumi.String("string"),
CaCertName: pulumi.String("string"),
AppPrivateKeyData: pulumi.String("string"),
Key: pulumi.String("string"),
MaxVersions: pulumi.String("string"),
Name: pulumi.String("string"),
Password: pulumi.String("string"),
SecurityToken: pulumi.String("string"),
TargetSalesforceId: pulumi.String("string"),
CaCertData: pulumi.String("string"),
})
var targetSalesforceResource = new TargetSalesforce("targetSalesforceResource", TargetSalesforceArgs.builder()
.clientId("string")
.authFlow("string")
.tenantUrl("string")
.email("string")
.keepPrevVersion("string")
.clientSecret("string")
.description("string")
.caCertName("string")
.appPrivateKeyData("string")
.key("string")
.maxVersions("string")
.name("string")
.password("string")
.securityToken("string")
.targetSalesforceId("string")
.caCertData("string")
.build());
target_salesforce_resource = akeyless.TargetSalesforce("targetSalesforceResource",
client_id="string",
auth_flow="string",
tenant_url="string",
email="string",
keep_prev_version="string",
client_secret="string",
description="string",
ca_cert_name="string",
app_private_key_data="string",
key="string",
max_versions="string",
name="string",
password="string",
security_token="string",
target_salesforce_id="string",
ca_cert_data="string")
const targetSalesforceResource = new akeyless.TargetSalesforce("targetSalesforceResource", {
clientId: "string",
authFlow: "string",
tenantUrl: "string",
email: "string",
keepPrevVersion: "string",
clientSecret: "string",
description: "string",
caCertName: "string",
appPrivateKeyData: "string",
key: "string",
maxVersions: "string",
name: "string",
password: "string",
securityToken: "string",
targetSalesforceId: "string",
caCertData: "string",
});
type: akeyless:TargetSalesforce
properties:
appPrivateKeyData: string
authFlow: string
caCertData: string
caCertName: string
clientId: string
clientSecret: string
description: string
email: string
keepPrevVersion: string
key: string
maxVersions: string
name: string
password: string
securityToken: string
targetSalesforceId: string
tenantUrl: string
TargetSalesforce 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 TargetSalesforce resource accepts the following input properties:
- Auth
Flow string - type of the auth flow ('jwt' / 'user-password')
- Client
Id string - Client ID of the oauth2 app to use for connecting to Salesforce
- Email string
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- Tenant
Url string - Url of the Salesforce tenant
- App
Private stringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- Ca
Cert stringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- Ca
Cert stringName - name of the certificate in Salesforce tenant to use when uploading new key
- Client
Secret string - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- Description string
- Description of the object
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Key string
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- Max
Versions string - Set the maximum number of versions, limited by the account settings defaults.
- Name string
- Target name
- Password string
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- Security
Token string - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- Target
Salesforce stringId - The ID of this resource.
- Auth
Flow string - type of the auth flow ('jwt' / 'user-password')
- Client
Id string - Client ID of the oauth2 app to use for connecting to Salesforce
- Email string
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- Tenant
Url string - Url of the Salesforce tenant
- App
Private stringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- Ca
Cert stringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- Ca
Cert stringName - name of the certificate in Salesforce tenant to use when uploading new key
- Client
Secret string - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- Description string
- Description of the object
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Key string
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- Max
Versions string - Set the maximum number of versions, limited by the account settings defaults.
- Name string
- Target name
- Password string
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- Security
Token string - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- Target
Salesforce stringId - The ID of this resource.
- auth
Flow String - type of the auth flow ('jwt' / 'user-password')
- client
Id String - Client ID of the oauth2 app to use for connecting to Salesforce
- email String
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- tenant
Url String - Url of the Salesforce tenant
- app
Private StringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- ca
Cert StringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- ca
Cert StringName - name of the certificate in Salesforce tenant to use when uploading new key
- client
Secret String - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- description String
- Description of the object
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key String
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- max
Versions String - Set the maximum number of versions, limited by the account settings defaults.
- name String
- Target name
- password String
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- security
Token String - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- target
Salesforce StringId - The ID of this resource.
- auth
Flow string - type of the auth flow ('jwt' / 'user-password')
- client
Id string - Client ID of the oauth2 app to use for connecting to Salesforce
- email string
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- tenant
Url string - Url of the Salesforce tenant
- app
Private stringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- ca
Cert stringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- ca
Cert stringName - name of the certificate in Salesforce tenant to use when uploading new key
- client
Secret string - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- description string
- Description of the object
- keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key string
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- max
Versions string - Set the maximum number of versions, limited by the account settings defaults.
- name string
- Target name
- password string
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- security
Token string - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- target
Salesforce stringId - The ID of this resource.
- auth_
flow str - type of the auth flow ('jwt' / 'user-password')
- client_
id str - Client ID of the oauth2 app to use for connecting to Salesforce
- email str
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- tenant_
url str - Url of the Salesforce tenant
- app_
private_ strkey_ data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- ca_
cert_ strdata - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- ca_
cert_ strname - name of the certificate in Salesforce tenant to use when uploading new key
- client_
secret str - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- description str
- Description of the object
- keep_
prev_ strversion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key str
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- max_
versions str - Set the maximum number of versions, limited by the account settings defaults.
- name str
- Target name
- password str
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- security_
token str - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- target_
salesforce_ strid - The ID of this resource.
- auth
Flow String - type of the auth flow ('jwt' / 'user-password')
- client
Id String - Client ID of the oauth2 app to use for connecting to Salesforce
- email String
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- tenant
Url String - Url of the Salesforce tenant
- app
Private StringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- ca
Cert StringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- ca
Cert StringName - name of the certificate in Salesforce tenant to use when uploading new key
- client
Secret String - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- description String
- Description of the object
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key String
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- max
Versions String - Set the maximum number of versions, limited by the account settings defaults.
- name String
- Target name
- password String
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- security
Token String - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- target
Salesforce StringId - The ID of this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the TargetSalesforce 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 TargetSalesforce Resource
Get an existing TargetSalesforce 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?: TargetSalesforceState, opts?: CustomResourceOptions): TargetSalesforce@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
app_private_key_data: Optional[str] = None,
auth_flow: Optional[str] = None,
ca_cert_data: Optional[str] = None,
ca_cert_name: Optional[str] = None,
client_id: Optional[str] = None,
client_secret: Optional[str] = None,
description: Optional[str] = None,
email: Optional[str] = None,
keep_prev_version: Optional[str] = None,
key: Optional[str] = None,
max_versions: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
security_token: Optional[str] = None,
target_salesforce_id: Optional[str] = None,
tenant_url: Optional[str] = None) -> TargetSalesforcefunc GetTargetSalesforce(ctx *Context, name string, id IDInput, state *TargetSalesforceState, opts ...ResourceOption) (*TargetSalesforce, error)public static TargetSalesforce Get(string name, Input<string> id, TargetSalesforceState? state, CustomResourceOptions? opts = null)public static TargetSalesforce get(String name, Output<String> id, TargetSalesforceState state, CustomResourceOptions options)resources: _: type: akeyless:TargetSalesforce 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.
- App
Private stringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- Auth
Flow string - type of the auth flow ('jwt' / 'user-password')
- Ca
Cert stringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- Ca
Cert stringName - name of the certificate in Salesforce tenant to use when uploading new key
- Client
Id string - Client ID of the oauth2 app to use for connecting to Salesforce
- Client
Secret string - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- Description string
- Description of the object
- Email string
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Key string
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- Max
Versions string - Set the maximum number of versions, limited by the account settings defaults.
- Name string
- Target name
- Password string
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- Security
Token string - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- Target
Salesforce stringId - The ID of this resource.
- Tenant
Url string - Url of the Salesforce tenant
- App
Private stringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- Auth
Flow string - type of the auth flow ('jwt' / 'user-password')
- Ca
Cert stringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- Ca
Cert stringName - name of the certificate in Salesforce tenant to use when uploading new key
- Client
Id string - Client ID of the oauth2 app to use for connecting to Salesforce
- Client
Secret string - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- Description string
- Description of the object
- Email string
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Key string
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- Max
Versions string - Set the maximum number of versions, limited by the account settings defaults.
- Name string
- Target name
- Password string
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- Security
Token string - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- Target
Salesforce stringId - The ID of this resource.
- Tenant
Url string - Url of the Salesforce tenant
- app
Private StringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- auth
Flow String - type of the auth flow ('jwt' / 'user-password')
- ca
Cert StringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- ca
Cert StringName - name of the certificate in Salesforce tenant to use when uploading new key
- client
Id String - Client ID of the oauth2 app to use for connecting to Salesforce
- client
Secret String - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- description String
- Description of the object
- email String
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key String
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- max
Versions String - Set the maximum number of versions, limited by the account settings defaults.
- name String
- Target name
- password String
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- security
Token String - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- target
Salesforce StringId - The ID of this resource.
- tenant
Url String - Url of the Salesforce tenant
- app
Private stringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- auth
Flow string - type of the auth flow ('jwt' / 'user-password')
- ca
Cert stringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- ca
Cert stringName - name of the certificate in Salesforce tenant to use when uploading new key
- client
Id string - Client ID of the oauth2 app to use for connecting to Salesforce
- client
Secret string - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- description string
- Description of the object
- email string
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key string
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- max
Versions string - Set the maximum number of versions, limited by the account settings defaults.
- name string
- Target name
- password string
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- security
Token string - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- target
Salesforce stringId - The ID of this resource.
- tenant
Url string - Url of the Salesforce tenant
- app_
private_ strkey_ data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- auth_
flow str - type of the auth flow ('jwt' / 'user-password')
- ca_
cert_ strdata - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- ca_
cert_ strname - name of the certificate in Salesforce tenant to use when uploading new key
- client_
id str - Client ID of the oauth2 app to use for connecting to Salesforce
- client_
secret str - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- description str
- Description of the object
- email str
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- keep_
prev_ strversion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key str
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- max_
versions str - Set the maximum number of versions, limited by the account settings defaults.
- name str
- Target name
- password str
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- security_
token str - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- target_
salesforce_ strid - The ID of this resource.
- tenant_
url str - Url of the Salesforce tenant
- app
Private StringKey Data - Base64 encoded PEM of the connected app private key (relevant for JWT auth only)
- auth
Flow String - type of the auth flow ('jwt' / 'user-password')
- ca
Cert StringData - Base64 encoded PEM cert to use when uploading a new key to Salesforce
- ca
Cert StringName - name of the certificate in Salesforce tenant to use when uploading new key
- client
Id String - Client ID of the oauth2 app to use for connecting to Salesforce
- client
Secret String - Client secret of the oauth2 app to use for connecting to Salesforce (required for password flow)
- description String
- Description of the object
- email String
- The email of the user attached to the oauth2 app used for connecting to Salesforce
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- key String
- The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used)
- max
Versions String - Set the maximum number of versions, limited by the account settings defaults.
- name String
- Target name
- password String
- The password of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- security
Token String - The security token of the user attached to the oauth2 app used for connecting to Salesforce (required for user-password flow)
- target
Salesforce StringId - The ID of this resource.
- tenant
Url String - Url of the Salesforce tenant
Package Details
- Repository
- akeyless akeyless-community/terraform-provider-akeyless
- License
- Notes
- This Pulumi package is based on the
akeylessTerraform Provider.
published on Monday, Apr 27, 2026 by akeyless-community
