AuthBackendRole
Manages an Kubernetes auth backend role in a Vault server. See the Vault documentation for more information.
Example Usage
using Pulumi;
using Vault = Pulumi.Vault;
class MyStack : Stack
{
public MyStack()
{
var kubernetes = new Vault.AuthBackend("kubernetes", new Vault.AuthBackendArgs
{
Type = "kubernetes",
});
var example = new Vault.Kubernetes.AuthBackendRole("example", new Vault.Kubernetes.AuthBackendRoleArgs
{
Backend = kubernetes.Path,
RoleName = "example-role",
BoundServiceAccountNames =
{
"example",
},
BoundServiceAccountNamespaces =
{
"example",
},
TokenTtl = 3600,
TokenPolicies =
{
"default",
"dev",
"prod",
},
Audience = "vault",
});
}
}
Coming soon!
import pulumi
import pulumi_vault as vault
kubernetes = vault.AuthBackend("kubernetes", type="kubernetes")
example = vault.kubernetes.AuthBackendRole("example",
backend=kubernetes.path,
role_name="example-role",
bound_service_account_names=["example"],
bound_service_account_namespaces=["example"],
token_ttl=3600,
token_policies=[
"default",
"dev",
"prod",
],
audience="vault")import * as pulumi from "@pulumi/pulumi";
import * as vault from "@pulumi/vault";
const kubernetes = new vault.AuthBackend("kubernetes", {type: "kubernetes"});
const example = new vault.kubernetes.AuthBackendRole("example", {
backend: kubernetes.path,
roleName: "example-role",
boundServiceAccountNames: ["example"],
boundServiceAccountNamespaces: ["example"],
tokenTtl: 3600,
tokenPolicies: [
"default",
"dev",
"prod",
],
audience: "vault",
});Create a AuthBackendRole Resource
new AuthBackendRole(name: string, args: AuthBackendRoleArgs, opts?: CustomResourceOptions);def AuthBackendRole(resource_name, opts=None, audience=None, backend=None, bound_cidrs=None, bound_service_account_names=None, bound_service_account_namespaces=None, max_ttl=None, num_uses=None, period=None, policies=None, role_name=None, token_bound_cidrs=None, token_explicit_max_ttl=None, token_max_ttl=None, token_no_default_policy=None, token_num_uses=None, token_period=None, token_policies=None, token_ttl=None, token_type=None, ttl=None, __props__=None);func NewAuthBackendRole(ctx *Context, name string, args AuthBackendRoleArgs, opts ...ResourceOption) (*AuthBackendRole, error)public AuthBackendRole(string name, AuthBackendRoleArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args AuthBackendRoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AuthBackendRoleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthBackendRoleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
AuthBackendRole Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The AuthBackendRole resource accepts the following input properties:
- Bound
Service List<string>Account Names List of service account names able to access this role. If set to
["*"]all names are allowed, both this and bound_service_account_namespaces can not be “*“.- Bound
Service List<string>Account Namespaces List of namespaces allowed to access this role. If set to
["*"]all namespaces are allowed, both this and bound_service_account_names can not be set to “*“.- Role
Name string Name of the role.
- Audience string
Audience claim to verify in the JWT.
- Backend string
Unique name of the kubernetes backend to configure.
- Bound
Cidrs List<string> If set, a list of CIDRs valid as the source address for login requests. This value is also encoded into any resulting token.
- Max
Ttl int The maximum allowed lifetime of tokens issued using this role, provided as a number of seconds.
- Num
Uses int If set, puts a use-count limitation on the issued token.
- Period int
If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- Policies List<string>
An array of strings specifying the policies to be set on tokens issued using this role.
- Token
Bound List<string>Cidrs List of CIDR blocks; if set, specifies blocks of IP addresses which can authenticate successfully, and ties the resulting token to these blocks as well.
- Token
Explicit intMax Ttl If set, will encode an explicit max TTL onto the token in number of seconds. This is a hard cap even if
token_ttlandtoken_max_ttlwould otherwise allow a renewal.- Token
Max intTtl The maximum lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- Token
No boolDefault Policy If set, the default policy will not be set on generated tokens; otherwise it will be added to the policies set in token_policies.
- Token
Num intUses The period, if any, in number of seconds to set on the token.
- Token
Period int If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- Token
Policies List<string> List of policies to encode onto generated tokens. Depending on the auth method, this list may be supplemented by user/group/other values.
- Token
Ttl int The incremental lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- Token
Type string The type of token that should be generated. Can be
service,batch, ordefaultto use the mount’s tuned default (which unless changed will beservicetokens). For token store roles, there are two additional possibilities:default-serviceanddefault-batchwhich specify the type to return unless the client requests a different type at generation time.- Ttl int
The TTL period of tokens issued using this role, provided as a number of seconds.
- Bound
Service []stringAccount Names List of service account names able to access this role. If set to
["*"]all names are allowed, both this and bound_service_account_namespaces can not be “*“.- Bound
Service []stringAccount Namespaces List of namespaces allowed to access this role. If set to
["*"]all namespaces are allowed, both this and bound_service_account_names can not be set to “*“.- Role
Name string Name of the role.
- Audience string
Audience claim to verify in the JWT.
- Backend string
Unique name of the kubernetes backend to configure.
- Bound
Cidrs []string If set, a list of CIDRs valid as the source address for login requests. This value is also encoded into any resulting token.
- Max
Ttl int The maximum allowed lifetime of tokens issued using this role, provided as a number of seconds.
- Num
Uses int If set, puts a use-count limitation on the issued token.
- Period int
If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- Policies []string
An array of strings specifying the policies to be set on tokens issued using this role.
- Token
Bound []stringCidrs List of CIDR blocks; if set, specifies blocks of IP addresses which can authenticate successfully, and ties the resulting token to these blocks as well.
- Token
Explicit intMax Ttl If set, will encode an explicit max TTL onto the token in number of seconds. This is a hard cap even if
token_ttlandtoken_max_ttlwould otherwise allow a renewal.- Token
Max intTtl The maximum lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- Token
No boolDefault Policy If set, the default policy will not be set on generated tokens; otherwise it will be added to the policies set in token_policies.
- Token
Num intUses The period, if any, in number of seconds to set on the token.
- Token
Period int If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- Token
Policies []string List of policies to encode onto generated tokens. Depending on the auth method, this list may be supplemented by user/group/other values.
- Token
Ttl int The incremental lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- Token
Type string The type of token that should be generated. Can be
service,batch, ordefaultto use the mount’s tuned default (which unless changed will beservicetokens). For token store roles, there are two additional possibilities:default-serviceanddefault-batchwhich specify the type to return unless the client requests a different type at generation time.- Ttl int
The TTL period of tokens issued using this role, provided as a number of seconds.
- bound
Service string[]Account Names List of service account names able to access this role. If set to
["*"]all names are allowed, both this and bound_service_account_namespaces can not be “*“.- bound
Service string[]Account Namespaces List of namespaces allowed to access this role. If set to
["*"]all namespaces are allowed, both this and bound_service_account_names can not be set to “*“.- role
Name string Name of the role.
- audience string
Audience claim to verify in the JWT.
- backend string
Unique name of the kubernetes backend to configure.
- bound
Cidrs string[] If set, a list of CIDRs valid as the source address for login requests. This value is also encoded into any resulting token.
- max
Ttl number The maximum allowed lifetime of tokens issued using this role, provided as a number of seconds.
- num
Uses number If set, puts a use-count limitation on the issued token.
- period number
If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- policies string[]
An array of strings specifying the policies to be set on tokens issued using this role.
- token
Bound string[]Cidrs List of CIDR blocks; if set, specifies blocks of IP addresses which can authenticate successfully, and ties the resulting token to these blocks as well.
- token
Explicit numberMax Ttl If set, will encode an explicit max TTL onto the token in number of seconds. This is a hard cap even if
token_ttlandtoken_max_ttlwould otherwise allow a renewal.- token
Max numberTtl The maximum lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- token
No booleanDefault Policy If set, the default policy will not be set on generated tokens; otherwise it will be added to the policies set in token_policies.
- token
Num numberUses The period, if any, in number of seconds to set on the token.
- token
Period number If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- token
Policies string[] List of policies to encode onto generated tokens. Depending on the auth method, this list may be supplemented by user/group/other values.
- token
Ttl number The incremental lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- token
Type string The type of token that should be generated. Can be
service,batch, ordefaultto use the mount’s tuned default (which unless changed will beservicetokens). For token store roles, there are two additional possibilities:default-serviceanddefault-batchwhich specify the type to return unless the client requests a different type at generation time.- ttl number
The TTL period of tokens issued using this role, provided as a number of seconds.
- bound_
service_ List[str]account_ names List of service account names able to access this role. If set to
["*"]all names are allowed, both this and bound_service_account_namespaces can not be “*“.- bound_
service_ List[str]account_ namespaces List of namespaces allowed to access this role. If set to
["*"]all namespaces are allowed, both this and bound_service_account_names can not be set to “*“.- role_
name str Name of the role.
- audience str
Audience claim to verify in the JWT.
- backend str
Unique name of the kubernetes backend to configure.
- bound_
cidrs List[str] If set, a list of CIDRs valid as the source address for login requests. This value is also encoded into any resulting token.
- max_
ttl float The maximum allowed lifetime of tokens issued using this role, provided as a number of seconds.
- num_
uses float If set, puts a use-count limitation on the issued token.
- period float
If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- policies List[str]
An array of strings specifying the policies to be set on tokens issued using this role.
- token_
bound_ List[str]cidrs List of CIDR blocks; if set, specifies blocks of IP addresses which can authenticate successfully, and ties the resulting token to these blocks as well.
- token_
explicit_ floatmax_ ttl If set, will encode an explicit max TTL onto the token in number of seconds. This is a hard cap even if
token_ttlandtoken_max_ttlwould otherwise allow a renewal.- token_
max_ floatttl The maximum lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- token_
no_ booldefault_ policy If set, the default policy will not be set on generated tokens; otherwise it will be added to the policies set in token_policies.
- token_
num_ floatuses The period, if any, in number of seconds to set on the token.
- token_
period float If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- token_
policies List[str] List of policies to encode onto generated tokens. Depending on the auth method, this list may be supplemented by user/group/other values.
- token_
ttl float The incremental lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- token_
type str The type of token that should be generated. Can be
service,batch, ordefaultto use the mount’s tuned default (which unless changed will beservicetokens). For token store roles, there are two additional possibilities:default-serviceanddefault-batchwhich specify the type to return unless the client requests a different type at generation time.- ttl float
The TTL period of tokens issued using this role, provided as a number of seconds.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthBackendRole resource produces the following output properties:
Look up an Existing AuthBackendRole Resource
Get an existing AuthBackendRole 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?: AuthBackendRoleState, opts?: CustomResourceOptions): AuthBackendRolestatic get(resource_name, id, opts=None, audience=None, backend=None, bound_cidrs=None, bound_service_account_names=None, bound_service_account_namespaces=None, max_ttl=None, num_uses=None, period=None, policies=None, role_name=None, token_bound_cidrs=None, token_explicit_max_ttl=None, token_max_ttl=None, token_no_default_policy=None, token_num_uses=None, token_period=None, token_policies=None, token_ttl=None, token_type=None, ttl=None, __props__=None);func GetAuthBackendRole(ctx *Context, name string, id IDInput, state *AuthBackendRoleState, opts ...ResourceOption) (*AuthBackendRole, error)public static AuthBackendRole Get(string name, Input<string> id, AuthBackendRoleState? state, CustomResourceOptions? opts = null)- 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.
The following state arguments are supported:
- Audience string
Audience claim to verify in the JWT.
- Backend string
Unique name of the kubernetes backend to configure.
- Bound
Cidrs List<string> If set, a list of CIDRs valid as the source address for login requests. This value is also encoded into any resulting token.
- Bound
Service List<string>Account Names List of service account names able to access this role. If set to
["*"]all names are allowed, both this and bound_service_account_namespaces can not be “*“.- Bound
Service List<string>Account Namespaces List of namespaces allowed to access this role. If set to
["*"]all namespaces are allowed, both this and bound_service_account_names can not be set to “*“.- Max
Ttl int The maximum allowed lifetime of tokens issued using this role, provided as a number of seconds.
- Num
Uses int If set, puts a use-count limitation on the issued token.
- Period int
If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- Policies List<string>
An array of strings specifying the policies to be set on tokens issued using this role.
- Role
Name string Name of the role.
- Token
Bound List<string>Cidrs List of CIDR blocks; if set, specifies blocks of IP addresses which can authenticate successfully, and ties the resulting token to these blocks as well.
- Token
Explicit intMax Ttl If set, will encode an explicit max TTL onto the token in number of seconds. This is a hard cap even if
token_ttlandtoken_max_ttlwould otherwise allow a renewal.- Token
Max intTtl The maximum lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- Token
No boolDefault Policy If set, the default policy will not be set on generated tokens; otherwise it will be added to the policies set in token_policies.
- Token
Num intUses The period, if any, in number of seconds to set on the token.
- Token
Period int If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- Token
Policies List<string> List of policies to encode onto generated tokens. Depending on the auth method, this list may be supplemented by user/group/other values.
- Token
Ttl int The incremental lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- Token
Type string The type of token that should be generated. Can be
service,batch, ordefaultto use the mount’s tuned default (which unless changed will beservicetokens). For token store roles, there are two additional possibilities:default-serviceanddefault-batchwhich specify the type to return unless the client requests a different type at generation time.- Ttl int
The TTL period of tokens issued using this role, provided as a number of seconds.
- Audience string
Audience claim to verify in the JWT.
- Backend string
Unique name of the kubernetes backend to configure.
- Bound
Cidrs []string If set, a list of CIDRs valid as the source address for login requests. This value is also encoded into any resulting token.
- Bound
Service []stringAccount Names List of service account names able to access this role. If set to
["*"]all names are allowed, both this and bound_service_account_namespaces can not be “*“.- Bound
Service []stringAccount Namespaces List of namespaces allowed to access this role. If set to
["*"]all namespaces are allowed, both this and bound_service_account_names can not be set to “*“.- Max
Ttl int The maximum allowed lifetime of tokens issued using this role, provided as a number of seconds.
- Num
Uses int If set, puts a use-count limitation on the issued token.
- Period int
If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- Policies []string
An array of strings specifying the policies to be set on tokens issued using this role.
- Role
Name string Name of the role.
- Token
Bound []stringCidrs List of CIDR blocks; if set, specifies blocks of IP addresses which can authenticate successfully, and ties the resulting token to these blocks as well.
- Token
Explicit intMax Ttl If set, will encode an explicit max TTL onto the token in number of seconds. This is a hard cap even if
token_ttlandtoken_max_ttlwould otherwise allow a renewal.- Token
Max intTtl The maximum lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- Token
No boolDefault Policy If set, the default policy will not be set on generated tokens; otherwise it will be added to the policies set in token_policies.
- Token
Num intUses The period, if any, in number of seconds to set on the token.
- Token
Period int If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- Token
Policies []string List of policies to encode onto generated tokens. Depending on the auth method, this list may be supplemented by user/group/other values.
- Token
Ttl int The incremental lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- Token
Type string The type of token that should be generated. Can be
service,batch, ordefaultto use the mount’s tuned default (which unless changed will beservicetokens). For token store roles, there are two additional possibilities:default-serviceanddefault-batchwhich specify the type to return unless the client requests a different type at generation time.- Ttl int
The TTL period of tokens issued using this role, provided as a number of seconds.
- audience string
Audience claim to verify in the JWT.
- backend string
Unique name of the kubernetes backend to configure.
- bound
Cidrs string[] If set, a list of CIDRs valid as the source address for login requests. This value is also encoded into any resulting token.
- bound
Service string[]Account Names List of service account names able to access this role. If set to
["*"]all names are allowed, both this and bound_service_account_namespaces can not be “*“.- bound
Service string[]Account Namespaces List of namespaces allowed to access this role. If set to
["*"]all namespaces are allowed, both this and bound_service_account_names can not be set to “*“.- max
Ttl number The maximum allowed lifetime of tokens issued using this role, provided as a number of seconds.
- num
Uses number If set, puts a use-count limitation on the issued token.
- period number
If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- policies string[]
An array of strings specifying the policies to be set on tokens issued using this role.
- role
Name string Name of the role.
- token
Bound string[]Cidrs List of CIDR blocks; if set, specifies blocks of IP addresses which can authenticate successfully, and ties the resulting token to these blocks as well.
- token
Explicit numberMax Ttl If set, will encode an explicit max TTL onto the token in number of seconds. This is a hard cap even if
token_ttlandtoken_max_ttlwould otherwise allow a renewal.- token
Max numberTtl The maximum lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- token
No booleanDefault Policy If set, the default policy will not be set on generated tokens; otherwise it will be added to the policies set in token_policies.
- token
Num numberUses The period, if any, in number of seconds to set on the token.
- token
Period number If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- token
Policies string[] List of policies to encode onto generated tokens. Depending on the auth method, this list may be supplemented by user/group/other values.
- token
Ttl number The incremental lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- token
Type string The type of token that should be generated. Can be
service,batch, ordefaultto use the mount’s tuned default (which unless changed will beservicetokens). For token store roles, there are two additional possibilities:default-serviceanddefault-batchwhich specify the type to return unless the client requests a different type at generation time.- ttl number
The TTL period of tokens issued using this role, provided as a number of seconds.
- audience str
Audience claim to verify in the JWT.
- backend str
Unique name of the kubernetes backend to configure.
- bound_
cidrs List[str] If set, a list of CIDRs valid as the source address for login requests. This value is also encoded into any resulting token.
- bound_
service_ List[str]account_ names List of service account names able to access this role. If set to
["*"]all names are allowed, both this and bound_service_account_namespaces can not be “*“.- bound_
service_ List[str]account_ namespaces List of namespaces allowed to access this role. If set to
["*"]all namespaces are allowed, both this and bound_service_account_names can not be set to “*“.- max_
ttl float The maximum allowed lifetime of tokens issued using this role, provided as a number of seconds.
- num_
uses float If set, puts a use-count limitation on the issued token.
- period float
If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- policies List[str]
An array of strings specifying the policies to be set on tokens issued using this role.
- role_
name str Name of the role.
- token_
bound_ List[str]cidrs List of CIDR blocks; if set, specifies blocks of IP addresses which can authenticate successfully, and ties the resulting token to these blocks as well.
- token_
explicit_ floatmax_ ttl If set, will encode an explicit max TTL onto the token in number of seconds. This is a hard cap even if
token_ttlandtoken_max_ttlwould otherwise allow a renewal.- token_
max_ floatttl The maximum lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- token_
no_ booldefault_ policy If set, the default policy will not be set on generated tokens; otherwise it will be added to the policies set in token_policies.
- token_
num_ floatuses The period, if any, in number of seconds to set on the token.
- token_
period float If set, indicates that the token generated using this role should never expire. The token should be renewed within the duration specified by this value. At each renewal, the token’s TTL will be set to the value of this field. Specified in seconds.
- token_
policies List[str] List of policies to encode onto generated tokens. Depending on the auth method, this list may be supplemented by user/group/other values.
- token_
ttl float The incremental lifetime for generated tokens in number of seconds. Its current value will be referenced at renewal time.
- token_
type str The type of token that should be generated. Can be
service,batch, ordefaultto use the mount’s tuned default (which unless changed will beservicetokens). For token store roles, there are two additional possibilities:default-serviceanddefault-batchwhich specify the type to return unless the client requests a different type at generation time.- ttl float
The TTL period of tokens issued using this role, provided as a number of seconds.
Package Details
- Repository
- https://github.com/pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vaultTerraform Provider.