published on Monday, Aug 10, 2026 by akeyless-community
published on Monday, Aug 10, 2026 by akeyless-community
MCP secret using OAuth 2.0 Authorization Code authentication
Create McpSecretOauthAuthorizationCode Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new McpSecretOauthAuthorizationCode(name: string, args?: McpSecretOauthAuthorizationCodeArgs, opts?: CustomResourceOptions);@overload
def McpSecretOauthAuthorizationCode(resource_name: str,
args: Optional[McpSecretOauthAuthorizationCodeArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def McpSecretOauthAuthorizationCode(resource_name: str,
opts: Optional[ResourceOptions] = None,
accessibility: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
input_rules: Optional[Sequence[str]] = None,
keep_prev_version: Optional[str] = None,
max_versions: Optional[str] = None,
mcp_secret_oauth_authorization_code_id: Optional[str] = None,
name: Optional[str] = None,
oauth_client_id: Optional[str] = None,
oauth_client_secret: Optional[str] = None,
oauth_redirect_uri: Optional[str] = None,
oauth_refresh_token: Optional[str] = None,
oauth_scopes: Optional[Sequence[str]] = None,
oauth_token_url: Optional[str] = None,
output_rules: Optional[Sequence[str]] = None,
protection_key: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
url: Optional[str] = None)func NewMcpSecretOauthAuthorizationCode(ctx *Context, name string, args *McpSecretOauthAuthorizationCodeArgs, opts ...ResourceOption) (*McpSecretOauthAuthorizationCode, error)public McpSecretOauthAuthorizationCode(string name, McpSecretOauthAuthorizationCodeArgs? args = null, CustomResourceOptions? opts = null)
public McpSecretOauthAuthorizationCode(String name, McpSecretOauthAuthorizationCodeArgs args)
public McpSecretOauthAuthorizationCode(String name, McpSecretOauthAuthorizationCodeArgs args, CustomResourceOptions options)
type: akeyless:McpSecretOauthAuthorizationCode
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "akeyless_mcp_secret_oauth_authorization_code" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args McpSecretOauthAuthorizationCodeArgs
- 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 McpSecretOauthAuthorizationCodeArgs
- 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 McpSecretOauthAuthorizationCodeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args McpSecretOauthAuthorizationCodeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args McpSecretOauthAuthorizationCodeArgs
- 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 mcpSecretOauthAuthorizationCodeResource = new Akeyless.McpSecretOauthAuthorizationCode("mcpSecretOauthAuthorizationCodeResource", new()
{
Accessibility = "string",
DeleteProtection = "string",
Description = "string",
InputRules = new[]
{
"string",
},
KeepPrevVersion = "string",
MaxVersions = "string",
McpSecretOauthAuthorizationCodeId = "string",
Name = "string",
OauthClientId = "string",
OauthClientSecret = "string",
OauthRedirectUri = "string",
OauthRefreshToken = "string",
OauthScopes = new[]
{
"string",
},
OauthTokenUrl = "string",
OutputRules = new[]
{
"string",
},
ProtectionKey = "string",
Tags = new[]
{
"string",
},
Url = "string",
});
example, err := akeyless.NewMcpSecretOauthAuthorizationCode(ctx, "mcpSecretOauthAuthorizationCodeResource", &akeyless.McpSecretOauthAuthorizationCodeArgs{
Accessibility: pulumi.String("string"),
DeleteProtection: pulumi.String("string"),
Description: pulumi.String("string"),
InputRules: pulumi.StringArray{
pulumi.String("string"),
},
KeepPrevVersion: pulumi.String("string"),
MaxVersions: pulumi.String("string"),
McpSecretOauthAuthorizationCodeId: pulumi.String("string"),
Name: pulumi.String("string"),
OauthClientId: pulumi.String("string"),
OauthClientSecret: pulumi.String("string"),
OauthRedirectUri: pulumi.String("string"),
OauthRefreshToken: pulumi.String("string"),
OauthScopes: pulumi.StringArray{
pulumi.String("string"),
},
OauthTokenUrl: pulumi.String("string"),
OutputRules: pulumi.StringArray{
pulumi.String("string"),
},
ProtectionKey: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Url: pulumi.String("string"),
})
resource "akeyless_mcp_secret_oauth_authorization_code" "mcpSecretOauthAuthorizationCodeResource" {
lifecycle {
create_before_destroy = true
}
accessibility = "string"
delete_protection = "string"
description = "string"
input_rules = ["string"]
keep_prev_version = "string"
max_versions = "string"
mcp_secret_oauth_authorization_code_id = "string"
name = "string"
oauth_client_id = "string"
oauth_client_secret = "string"
oauth_redirect_uri = "string"
oauth_refresh_token = "string"
oauth_scopes = ["string"]
oauth_token_url = "string"
output_rules = ["string"]
protection_key = "string"
tags = ["string"]
url = "string"
}
var mcpSecretOauthAuthorizationCodeResource = new McpSecretOauthAuthorizationCode("mcpSecretOauthAuthorizationCodeResource", McpSecretOauthAuthorizationCodeArgs.builder()
.accessibility("string")
.deleteProtection("string")
.description("string")
.inputRules("string")
.keepPrevVersion("string")
.maxVersions("string")
.mcpSecretOauthAuthorizationCodeId("string")
.name("string")
.oauthClientId("string")
.oauthClientSecret("string")
.oauthRedirectUri("string")
.oauthRefreshToken("string")
.oauthScopes("string")
.oauthTokenUrl("string")
.outputRules("string")
.protectionKey("string")
.tags("string")
.url("string")
.build());
mcp_secret_oauth_authorization_code_resource = akeyless.McpSecretOauthAuthorizationCode("mcpSecretOauthAuthorizationCodeResource",
accessibility="string",
delete_protection="string",
description="string",
input_rules=["string"],
keep_prev_version="string",
max_versions="string",
mcp_secret_oauth_authorization_code_id="string",
name="string",
oauth_client_id="string",
oauth_client_secret="string",
oauth_redirect_uri="string",
oauth_refresh_token="string",
oauth_scopes=["string"],
oauth_token_url="string",
output_rules=["string"],
protection_key="string",
tags=["string"],
url="string")
const mcpSecretOauthAuthorizationCodeResource = new akeyless.McpSecretOauthAuthorizationCode("mcpSecretOauthAuthorizationCodeResource", {
accessibility: "string",
deleteProtection: "string",
description: "string",
inputRules: ["string"],
keepPrevVersion: "string",
maxVersions: "string",
mcpSecretOauthAuthorizationCodeId: "string",
name: "string",
oauthClientId: "string",
oauthClientSecret: "string",
oauthRedirectUri: "string",
oauthRefreshToken: "string",
oauthScopes: ["string"],
oauthTokenUrl: "string",
outputRules: ["string"],
protectionKey: "string",
tags: ["string"],
url: "string",
});
type: akeyless:McpSecretOauthAuthorizationCode
properties:
accessibility: string
deleteProtection: string
description: string
inputRules:
- string
keepPrevVersion: string
maxVersions: string
mcpSecretOauthAuthorizationCodeId: string
name: string
oauthClientId: string
oauthClientSecret: string
oauthRedirectUri: string
oauthRefreshToken: string
oauthScopes:
- string
oauthTokenUrl: string
outputRules:
- string
protectionKey: string
tags:
- string
url: string
McpSecretOauthAuthorizationCode 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 McpSecretOauthAuthorizationCode resource accepts the following input properties:
- Accessibility string
- For personal password manager
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Input
Rules List<string> - Agentic input rule in name=...,rule=... format
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Max
Versions string - Set the maximum number of versions, limited by the account settings defaults
- string
- The ID of this resource.
- Name string
- Secret name
- Oauth
Client stringId - OAuth client ID
- Oauth
Client stringSecret - OAuth client secret
- Oauth
Redirect stringUri - OAuth redirect URI
- Oauth
Refresh stringToken - OAuth refresh token
- Oauth
Scopes List<string> - OAuth scopes
- Oauth
Token stringUrl - OAuth token URL
- Output
Rules List<string> - Agentic output rule in name=...,rule=... format
- Protection
Key string - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- List<string>
- List of the tags attached to this secret
- Url string
- URL of the MCP service
- Accessibility string
- For personal password manager
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Input
Rules []string - Agentic input rule in name=...,rule=... format
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Max
Versions string - Set the maximum number of versions, limited by the account settings defaults
- string
- The ID of this resource.
- Name string
- Secret name
- Oauth
Client stringId - OAuth client ID
- Oauth
Client stringSecret - OAuth client secret
- Oauth
Redirect stringUri - OAuth redirect URI
- Oauth
Refresh stringToken - OAuth refresh token
- Oauth
Scopes []string - OAuth scopes
- Oauth
Token stringUrl - OAuth token URL
- Output
Rules []string - Agentic output rule in name=...,rule=... format
- Protection
Key string - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- []string
- List of the tags attached to this secret
- Url string
- URL of the MCP service
- accessibility string
- For personal password manager
- delete_
protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- input_
rules list(string) - Agentic input rule in name=...,rule=... format
- keep_
prev_ stringversion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max_
versions string - Set the maximum number of versions, limited by the account settings defaults
- string
- The ID of this resource.
- name string
- Secret name
- oauth_
client_ stringid - OAuth client ID
- oauth_
client_ stringsecret - OAuth client secret
- oauth_
redirect_ stringuri - OAuth redirect URI
- oauth_
refresh_ stringtoken - OAuth refresh token
- oauth_
scopes list(string) - OAuth scopes
- oauth_
token_ stringurl - OAuth token URL
- output_
rules list(string) - Agentic output rule in name=...,rule=... format
- protection_
key string - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- list(string)
- List of the tags attached to this secret
- url string
- URL of the MCP service
- accessibility String
- For personal password manager
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- input
Rules List<String> - Agentic input rule in name=...,rule=... format
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max
Versions String - Set the maximum number of versions, limited by the account settings defaults
- String
- The ID of this resource.
- name String
- Secret name
- oauth
Client StringId - OAuth client ID
- oauth
Client StringSecret - OAuth client secret
- oauth
Redirect StringUri - OAuth redirect URI
- oauth
Refresh StringToken - OAuth refresh token
- oauth
Scopes List<String> - OAuth scopes
- oauth
Token StringUrl - OAuth token URL
- output
Rules List<String> - Agentic output rule in name=...,rule=... format
- protection
Key String - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- List<String>
- List of the tags attached to this secret
- url String
- URL of the MCP service
- accessibility string
- For personal password manager
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- input
Rules string[] - Agentic input rule in name=...,rule=... format
- keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max
Versions string - Set the maximum number of versions, limited by the account settings defaults
- string
- The ID of this resource.
- name string
- Secret name
- oauth
Client stringId - OAuth client ID
- oauth
Client stringSecret - OAuth client secret
- oauth
Redirect stringUri - OAuth redirect URI
- oauth
Refresh stringToken - OAuth refresh token
- oauth
Scopes string[] - OAuth scopes
- oauth
Token stringUrl - OAuth token URL
- output
Rules string[] - Agentic output rule in name=...,rule=... format
- protection
Key string - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- string[]
- List of the tags attached to this secret
- url string
- URL of the MCP service
- accessibility str
- For personal password manager
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- description str
- Description of the object
- input_
rules Sequence[str] - Agentic input rule in name=...,rule=... format
- keep_
prev_ strversion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max_
versions str - Set the maximum number of versions, limited by the account settings defaults
- str
- The ID of this resource.
- name str
- Secret name
- oauth_
client_ strid - OAuth client ID
- oauth_
client_ strsecret - OAuth client secret
- oauth_
redirect_ struri - OAuth redirect URI
- oauth_
refresh_ strtoken - OAuth refresh token
- oauth_
scopes Sequence[str] - OAuth scopes
- oauth_
token_ strurl - OAuth token URL
- output_
rules Sequence[str] - Agentic output rule in name=...,rule=... format
- protection_
key str - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- Sequence[str]
- List of the tags attached to this secret
- url str
- URL of the MCP service
- accessibility String
- For personal password manager
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- input
Rules List<String> - Agentic input rule in name=...,rule=... format
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max
Versions String - Set the maximum number of versions, limited by the account settings defaults
- String
- The ID of this resource.
- name String
- Secret name
- oauth
Client StringId - OAuth client ID
- oauth
Client StringSecret - OAuth client secret
- oauth
Redirect StringUri - OAuth redirect URI
- oauth
Refresh StringToken - OAuth refresh token
- oauth
Scopes List<String> - OAuth scopes
- oauth
Token StringUrl - OAuth token URL
- output
Rules List<String> - Agentic output rule in name=...,rule=... format
- protection
Key String - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- List<String>
- List of the tags attached to this secret
- url String
- URL of the MCP service
Outputs
All input properties are implicitly available as output properties. Additionally, the McpSecretOauthAuthorizationCode 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 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 McpSecretOauthAuthorizationCode Resource
Get an existing McpSecretOauthAuthorizationCode 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?: McpSecretOauthAuthorizationCodeState, opts?: CustomResourceOptions): McpSecretOauthAuthorizationCode@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accessibility: Optional[str] = None,
delete_protection: Optional[str] = None,
description: Optional[str] = None,
input_rules: Optional[Sequence[str]] = None,
keep_prev_version: Optional[str] = None,
max_versions: Optional[str] = None,
mcp_secret_oauth_authorization_code_id: Optional[str] = None,
name: Optional[str] = None,
oauth_client_id: Optional[str] = None,
oauth_client_secret: Optional[str] = None,
oauth_redirect_uri: Optional[str] = None,
oauth_refresh_token: Optional[str] = None,
oauth_scopes: Optional[Sequence[str]] = None,
oauth_token_url: Optional[str] = None,
output_rules: Optional[Sequence[str]] = None,
protection_key: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
url: Optional[str] = None) -> McpSecretOauthAuthorizationCodefunc GetMcpSecretOauthAuthorizationCode(ctx *Context, name string, id IDInput, state *McpSecretOauthAuthorizationCodeState, opts ...ResourceOption) (*McpSecretOauthAuthorizationCode, error)public static McpSecretOauthAuthorizationCode Get(string name, Input<string> id, McpSecretOauthAuthorizationCodeState? state, CustomResourceOptions? opts = null)public static McpSecretOauthAuthorizationCode get(String name, Output<String> id, McpSecretOauthAuthorizationCodeState state, CustomResourceOptions options)resources: _: type: akeyless:McpSecretOauthAuthorizationCode get: id: ${id}import {
to = akeyless_mcp_secret_oauth_authorization_code.example
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.
- Accessibility string
- For personal password manager
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Input
Rules List<string> - Agentic input rule in name=...,rule=... format
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Max
Versions string - Set the maximum number of versions, limited by the account settings defaults
- string
- The ID of this resource.
- Name string
- Secret name
- Oauth
Client stringId - OAuth client ID
- Oauth
Client stringSecret - OAuth client secret
- Oauth
Redirect stringUri - OAuth redirect URI
- Oauth
Refresh stringToken - OAuth refresh token
- Oauth
Scopes List<string> - OAuth scopes
- Oauth
Token stringUrl - OAuth token URL
- Output
Rules List<string> - Agentic output rule in name=...,rule=... format
- Protection
Key string - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- List<string>
- List of the tags attached to this secret
- Url string
- URL of the MCP service
- Accessibility string
- For personal password manager
- Delete
Protection string - Protection from accidental deletion of this object [true/false]
- Description string
- Description of the object
- Input
Rules []string - Agentic input rule in name=...,rule=... format
- Keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- Max
Versions string - Set the maximum number of versions, limited by the account settings defaults
- string
- The ID of this resource.
- Name string
- Secret name
- Oauth
Client stringId - OAuth client ID
- Oauth
Client stringSecret - OAuth client secret
- Oauth
Redirect stringUri - OAuth redirect URI
- Oauth
Refresh stringToken - OAuth refresh token
- Oauth
Scopes []string - OAuth scopes
- Oauth
Token stringUrl - OAuth token URL
- Output
Rules []string - Agentic output rule in name=...,rule=... format
- Protection
Key string - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- []string
- List of the tags attached to this secret
- Url string
- URL of the MCP service
- accessibility string
- For personal password manager
- delete_
protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- input_
rules list(string) - Agentic input rule in name=...,rule=... format
- keep_
prev_ stringversion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max_
versions string - Set the maximum number of versions, limited by the account settings defaults
- string
- The ID of this resource.
- name string
- Secret name
- oauth_
client_ stringid - OAuth client ID
- oauth_
client_ stringsecret - OAuth client secret
- oauth_
redirect_ stringuri - OAuth redirect URI
- oauth_
refresh_ stringtoken - OAuth refresh token
- oauth_
scopes list(string) - OAuth scopes
- oauth_
token_ stringurl - OAuth token URL
- output_
rules list(string) - Agentic output rule in name=...,rule=... format
- protection_
key string - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- list(string)
- List of the tags attached to this secret
- url string
- URL of the MCP service
- accessibility String
- For personal password manager
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- input
Rules List<String> - Agentic input rule in name=...,rule=... format
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max
Versions String - Set the maximum number of versions, limited by the account settings defaults
- String
- The ID of this resource.
- name String
- Secret name
- oauth
Client StringId - OAuth client ID
- oauth
Client StringSecret - OAuth client secret
- oauth
Redirect StringUri - OAuth redirect URI
- oauth
Refresh StringToken - OAuth refresh token
- oauth
Scopes List<String> - OAuth scopes
- oauth
Token StringUrl - OAuth token URL
- output
Rules List<String> - Agentic output rule in name=...,rule=... format
- protection
Key String - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- List<String>
- List of the tags attached to this secret
- url String
- URL of the MCP service
- accessibility string
- For personal password manager
- delete
Protection string - Protection from accidental deletion of this object [true/false]
- description string
- Description of the object
- input
Rules string[] - Agentic input rule in name=...,rule=... format
- keep
Prev stringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max
Versions string - Set the maximum number of versions, limited by the account settings defaults
- string
- The ID of this resource.
- name string
- Secret name
- oauth
Client stringId - OAuth client ID
- oauth
Client stringSecret - OAuth client secret
- oauth
Redirect stringUri - OAuth redirect URI
- oauth
Refresh stringToken - OAuth refresh token
- oauth
Scopes string[] - OAuth scopes
- oauth
Token stringUrl - OAuth token URL
- output
Rules string[] - Agentic output rule in name=...,rule=... format
- protection
Key string - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- string[]
- List of the tags attached to this secret
- url string
- URL of the MCP service
- accessibility str
- For personal password manager
- delete_
protection str - Protection from accidental deletion of this object [true/false]
- description str
- Description of the object
- input_
rules Sequence[str] - Agentic input rule in name=...,rule=... format
- keep_
prev_ strversion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max_
versions str - Set the maximum number of versions, limited by the account settings defaults
- str
- The ID of this resource.
- name str
- Secret name
- oauth_
client_ strid - OAuth client ID
- oauth_
client_ strsecret - OAuth client secret
- oauth_
redirect_ struri - OAuth redirect URI
- oauth_
refresh_ strtoken - OAuth refresh token
- oauth_
scopes Sequence[str] - OAuth scopes
- oauth_
token_ strurl - OAuth token URL
- output_
rules Sequence[str] - Agentic output rule in name=...,rule=... format
- protection_
key str - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- Sequence[str]
- List of the tags attached to this secret
- url str
- URL of the MCP service
- accessibility String
- For personal password manager
- delete
Protection String - Protection from accidental deletion of this object [true/false]
- description String
- Description of the object
- input
Rules List<String> - Agentic input rule in name=...,rule=... format
- keep
Prev StringVersion - Whether to keep previous version [true/false]. If not set, use default according to account settings
- max
Versions String - Set the maximum number of versions, limited by the account settings defaults
- String
- The ID of this resource.
- name String
- Secret name
- oauth
Client StringId - OAuth client ID
- oauth
Client StringSecret - OAuth client secret
- oauth
Redirect StringUri - OAuth redirect URI
- oauth
Refresh StringToken - OAuth refresh token
- oauth
Scopes List<String> - OAuth scopes
- oauth
Token StringUrl - OAuth token URL
- output
Rules List<String> - Agentic output rule in name=...,rule=... format
- protection
Key String - The name of a key that is used to encrypt the secret value (if empty, the account default protectionKey key will be used)
- List<String>
- List of the tags attached to this secret
- url String
- URL of the MCP service
Package Details
- Repository
- akeyless akeyless-community/terraform-provider-akeyless
- License
- Notes
- This Pulumi package is based on the
akeylessTerraform Provider.
published on Monday, Aug 10, 2026 by akeyless-community