vault.aws.AuthBackendLogin
Explore with Pulumi AI
Logs into a Vault server using an AWS auth backend. Login can be accomplished using a signed identity request from IAM or using ec2 instance metadata. For more information, see the Vault documentation.
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
aws:
type: vault:AuthBackend
properties:
type: aws
path: aws
example:
type: vault:aws:AuthBackendClient
properties:
backend: ${aws.path}
accessKey: '123456789012'
secretKey: AWSSECRETKEYGOESHERE
exampleAuthBackendRole:
type: vault:aws:AuthBackendRole
name: example
properties:
backend: ${aws.path}
role: test-role
authType: ec2
boundAmiId: ami-8c1be5f6
boundAccountId: '123456789012'
boundVpcId: vpc-b61106d4
boundSubnetId: vpc-133128f1
boundIamInstanceProfileArns:
- arn:aws:iam::123456789012:instance-profile/MyProfile
ttl: 60
maxTtl: 120
tokenPolicies:
- default
- dev
- prod
options:
dependson:
- ${example}
exampleAuthBackendLogin:
type: vault:aws:AuthBackendLogin
name: example
properties:
backend: ${exampleVaultAuthBackend.path}
role: ${exampleAuthBackendRole.role}
identity: BASE64ENCODEDIDENTITYDOCUMENT
signature: BASE64ENCODEDSHA256IDENTITYDOCUMENTSIGNATURE
Create AuthBackendLogin Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthBackendLogin(name: string, args?: AuthBackendLoginArgs, opts?: CustomResourceOptions);
@overload
def AuthBackendLogin(resource_name: str,
args: Optional[AuthBackendLoginArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def AuthBackendLogin(resource_name: str,
opts: Optional[ResourceOptions] = None,
backend: Optional[str] = None,
iam_http_request_method: Optional[str] = None,
iam_request_body: Optional[str] = None,
iam_request_headers: Optional[str] = None,
iam_request_url: Optional[str] = None,
identity: Optional[str] = None,
namespace: Optional[str] = None,
nonce: Optional[str] = None,
pkcs7: Optional[str] = None,
role: Optional[str] = None,
signature: Optional[str] = None)
func NewAuthBackendLogin(ctx *Context, name string, args *AuthBackendLoginArgs, opts ...ResourceOption) (*AuthBackendLogin, error)
public AuthBackendLogin(string name, AuthBackendLoginArgs? args = null, CustomResourceOptions? opts = null)
public AuthBackendLogin(String name, AuthBackendLoginArgs args)
public AuthBackendLogin(String name, AuthBackendLoginArgs args, CustomResourceOptions options)
type: vault:aws:AuthBackendLogin
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 AuthBackendLoginArgs
- 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 AuthBackendLoginArgs
- 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 AuthBackendLoginArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthBackendLoginArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthBackendLoginArgs
- 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 vaultAuthBackendLoginResource = new Vault.Aws.AuthBackendLogin("vaultAuthBackendLoginResource", new()
{
Backend = "string",
IamHttpRequestMethod = "string",
IamRequestBody = "string",
IamRequestHeaders = "string",
IamRequestUrl = "string",
Identity = "string",
Namespace = "string",
Nonce = "string",
Pkcs7 = "string",
Role = "string",
Signature = "string",
});
example, err := aws.NewAuthBackendLogin(ctx, "vaultAuthBackendLoginResource", &aws.AuthBackendLoginArgs{
Backend: pulumi.String("string"),
IamHttpRequestMethod: pulumi.String("string"),
IamRequestBody: pulumi.String("string"),
IamRequestHeaders: pulumi.String("string"),
IamRequestUrl: pulumi.String("string"),
Identity: pulumi.String("string"),
Namespace: pulumi.String("string"),
Nonce: pulumi.String("string"),
Pkcs7: pulumi.String("string"),
Role: pulumi.String("string"),
Signature: pulumi.String("string"),
})
var vaultAuthBackendLoginResource = new AuthBackendLogin("vaultAuthBackendLoginResource", AuthBackendLoginArgs.builder()
.backend("string")
.iamHttpRequestMethod("string")
.iamRequestBody("string")
.iamRequestHeaders("string")
.iamRequestUrl("string")
.identity("string")
.namespace("string")
.nonce("string")
.pkcs7("string")
.role("string")
.signature("string")
.build());
vault_auth_backend_login_resource = vault.aws.AuthBackendLogin("vaultAuthBackendLoginResource",
backend="string",
iam_http_request_method="string",
iam_request_body="string",
iam_request_headers="string",
iam_request_url="string",
identity="string",
namespace="string",
nonce="string",
pkcs7="string",
role="string",
signature="string")
const vaultAuthBackendLoginResource = new vault.aws.AuthBackendLogin("vaultAuthBackendLoginResource", {
backend: "string",
iamHttpRequestMethod: "string",
iamRequestBody: "string",
iamRequestHeaders: "string",
iamRequestUrl: "string",
identity: "string",
namespace: "string",
nonce: "string",
pkcs7: "string",
role: "string",
signature: "string",
});
type: vault:aws:AuthBackendLogin
properties:
backend: string
iamHttpRequestMethod: string
iamRequestBody: string
iamRequestHeaders: string
iamRequestUrl: string
identity: string
namespace: string
nonce: string
pkcs7: string
role: string
signature: string
AuthBackendLogin Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AuthBackendLogin resource accepts the following input properties:
- Backend string
- The unique name of the AWS auth backend. Defaults to 'aws'.
- Iam
Http stringRequest Method - The HTTP method used in the signed IAM request.
- Iam
Request stringBody - The base64-encoded body of the signed request.
- Iam
Request stringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- Iam
Request stringUrl - The base64-encoded HTTP URL used in the signed request.
- Identity string
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Nonce string
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- Pkcs7 string
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- Role string
- The name of the AWS auth backend role to create tokens against.
- Signature string
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- Backend string
- The unique name of the AWS auth backend. Defaults to 'aws'.
- Iam
Http stringRequest Method - The HTTP method used in the signed IAM request.
- Iam
Request stringBody - The base64-encoded body of the signed request.
- Iam
Request stringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- Iam
Request stringUrl - The base64-encoded HTTP URL used in the signed request.
- Identity string
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Nonce string
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- Pkcs7 string
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- Role string
- The name of the AWS auth backend role to create tokens against.
- Signature string
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- backend String
- The unique name of the AWS auth backend. Defaults to 'aws'.
- iam
Http StringRequest Method - The HTTP method used in the signed IAM request.
- iam
Request StringBody - The base64-encoded body of the signed request.
- iam
Request StringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- iam
Request StringUrl - The base64-encoded HTTP URL used in the signed request.
- identity String
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - nonce String
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- pkcs7 String
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- role String
- The name of the AWS auth backend role to create tokens against.
- signature String
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- backend string
- The unique name of the AWS auth backend. Defaults to 'aws'.
- iam
Http stringRequest Method - The HTTP method used in the signed IAM request.
- iam
Request stringBody - The base64-encoded body of the signed request.
- iam
Request stringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- iam
Request stringUrl - The base64-encoded HTTP URL used in the signed request.
- identity string
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - nonce string
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- pkcs7 string
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- role string
- The name of the AWS auth backend role to create tokens against.
- signature string
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- backend str
- The unique name of the AWS auth backend. Defaults to 'aws'.
- iam_
http_ strrequest_ method - The HTTP method used in the signed IAM request.
- iam_
request_ strbody - The base64-encoded body of the signed request.
- iam_
request_ strheaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- iam_
request_ strurl - The base64-encoded HTTP URL used in the signed request.
- identity str
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - nonce str
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- pkcs7 str
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- role str
- The name of the AWS auth backend role to create tokens against.
- signature str
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- backend String
- The unique name of the AWS auth backend. Defaults to 'aws'.
- iam
Http StringRequest Method - The HTTP method used in the signed IAM request.
- iam
Request StringBody - The base64-encoded body of the signed request.
- iam
Request StringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- iam
Request StringUrl - The base64-encoded HTTP URL used in the signed request.
- identity String
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - nonce String
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- pkcs7 String
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- role String
- The name of the AWS auth backend role to create tokens against.
- signature String
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthBackendLogin resource produces the following output properties:
- Accessor string
- The token's accessor.
- Auth
Type string - The authentication type used to generate this token.
- Client
Token string - The token returned by Vault.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lease
Duration int - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - Lease
Start stringTime - Metadata Dictionary<string, object>
- A map of information returned by the Vault server about the authentication used to generate this token.
- Policies List<string>
- The Vault policies assigned to this token.
- Renewable bool
- Set to true if the token can be extended through renewal.
- Accessor string
- The token's accessor.
- Auth
Type string - The authentication type used to generate this token.
- Client
Token string - The token returned by Vault.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lease
Duration int - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - Lease
Start stringTime - Metadata map[string]interface{}
- A map of information returned by the Vault server about the authentication used to generate this token.
- Policies []string
- The Vault policies assigned to this token.
- Renewable bool
- Set to true if the token can be extended through renewal.
- accessor String
- The token's accessor.
- auth
Type String - The authentication type used to generate this token.
- client
Token String - The token returned by Vault.
- id String
- The provider-assigned unique ID for this managed resource.
- lease
Duration Integer - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - lease
Start StringTime - metadata Map<String,Object>
- A map of information returned by the Vault server about the authentication used to generate this token.
- policies List<String>
- The Vault policies assigned to this token.
- renewable Boolean
- Set to true if the token can be extended through renewal.
- accessor string
- The token's accessor.
- auth
Type string - The authentication type used to generate this token.
- client
Token string - The token returned by Vault.
- id string
- The provider-assigned unique ID for this managed resource.
- lease
Duration number - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - lease
Start stringTime - metadata {[key: string]: any}
- A map of information returned by the Vault server about the authentication used to generate this token.
- policies string[]
- The Vault policies assigned to this token.
- renewable boolean
- Set to true if the token can be extended through renewal.
- accessor str
- The token's accessor.
- auth_
type str - The authentication type used to generate this token.
- client_
token str - The token returned by Vault.
- id str
- The provider-assigned unique ID for this managed resource.
- lease_
duration int - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - lease_
start_ strtime - metadata Mapping[str, Any]
- A map of information returned by the Vault server about the authentication used to generate this token.
- policies Sequence[str]
- The Vault policies assigned to this token.
- renewable bool
- Set to true if the token can be extended through renewal.
- accessor String
- The token's accessor.
- auth
Type String - The authentication type used to generate this token.
- client
Token String - The token returned by Vault.
- id String
- The provider-assigned unique ID for this managed resource.
- lease
Duration Number - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - lease
Start StringTime - metadata Map<Any>
- A map of information returned by the Vault server about the authentication used to generate this token.
- policies List<String>
- The Vault policies assigned to this token.
- renewable Boolean
- Set to true if the token can be extended through renewal.
Look up Existing AuthBackendLogin Resource
Get an existing AuthBackendLogin 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?: AuthBackendLoginState, opts?: CustomResourceOptions): AuthBackendLogin
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
accessor: Optional[str] = None,
auth_type: Optional[str] = None,
backend: Optional[str] = None,
client_token: Optional[str] = None,
iam_http_request_method: Optional[str] = None,
iam_request_body: Optional[str] = None,
iam_request_headers: Optional[str] = None,
iam_request_url: Optional[str] = None,
identity: Optional[str] = None,
lease_duration: Optional[int] = None,
lease_start_time: Optional[str] = None,
metadata: Optional[Mapping[str, Any]] = None,
namespace: Optional[str] = None,
nonce: Optional[str] = None,
pkcs7: Optional[str] = None,
policies: Optional[Sequence[str]] = None,
renewable: Optional[bool] = None,
role: Optional[str] = None,
signature: Optional[str] = None) -> AuthBackendLogin
func GetAuthBackendLogin(ctx *Context, name string, id IDInput, state *AuthBackendLoginState, opts ...ResourceOption) (*AuthBackendLogin, error)
public static AuthBackendLogin Get(string name, Input<string> id, AuthBackendLoginState? state, CustomResourceOptions? opts = null)
public static AuthBackendLogin get(String name, Output<String> id, AuthBackendLoginState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Accessor string
- The token's accessor.
- Auth
Type string - The authentication type used to generate this token.
- Backend string
- The unique name of the AWS auth backend. Defaults to 'aws'.
- Client
Token string - The token returned by Vault.
- Iam
Http stringRequest Method - The HTTP method used in the signed IAM request.
- Iam
Request stringBody - The base64-encoded body of the signed request.
- Iam
Request stringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- Iam
Request stringUrl - The base64-encoded HTTP URL used in the signed request.
- Identity string
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- Lease
Duration int - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - Lease
Start stringTime - Metadata Dictionary<string, object>
- A map of information returned by the Vault server about the authentication used to generate this token.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Nonce string
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- Pkcs7 string
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- Policies List<string>
- The Vault policies assigned to this token.
- Renewable bool
- Set to true if the token can be extended through renewal.
- Role string
- The name of the AWS auth backend role to create tokens against.
- Signature string
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- Accessor string
- The token's accessor.
- Auth
Type string - The authentication type used to generate this token.
- Backend string
- The unique name of the AWS auth backend. Defaults to 'aws'.
- Client
Token string - The token returned by Vault.
- Iam
Http stringRequest Method - The HTTP method used in the signed IAM request.
- Iam
Request stringBody - The base64-encoded body of the signed request.
- Iam
Request stringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- Iam
Request stringUrl - The base64-encoded HTTP URL used in the signed request.
- Identity string
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- Lease
Duration int - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - Lease
Start stringTime - Metadata map[string]interface{}
- A map of information returned by the Vault server about the authentication used to generate this token.
- Namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - Nonce string
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- Pkcs7 string
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- Policies []string
- The Vault policies assigned to this token.
- Renewable bool
- Set to true if the token can be extended through renewal.
- Role string
- The name of the AWS auth backend role to create tokens against.
- Signature string
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- accessor String
- The token's accessor.
- auth
Type String - The authentication type used to generate this token.
- backend String
- The unique name of the AWS auth backend. Defaults to 'aws'.
- client
Token String - The token returned by Vault.
- iam
Http StringRequest Method - The HTTP method used in the signed IAM request.
- iam
Request StringBody - The base64-encoded body of the signed request.
- iam
Request StringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- iam
Request StringUrl - The base64-encoded HTTP URL used in the signed request.
- identity String
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- lease
Duration Integer - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - lease
Start StringTime - metadata Map<String,Object>
- A map of information returned by the Vault server about the authentication used to generate this token.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - nonce String
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- pkcs7 String
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- policies List<String>
- The Vault policies assigned to this token.
- renewable Boolean
- Set to true if the token can be extended through renewal.
- role String
- The name of the AWS auth backend role to create tokens against.
- signature String
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- accessor string
- The token's accessor.
- auth
Type string - The authentication type used to generate this token.
- backend string
- The unique name of the AWS auth backend. Defaults to 'aws'.
- client
Token string - The token returned by Vault.
- iam
Http stringRequest Method - The HTTP method used in the signed IAM request.
- iam
Request stringBody - The base64-encoded body of the signed request.
- iam
Request stringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- iam
Request stringUrl - The base64-encoded HTTP URL used in the signed request.
- identity string
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- lease
Duration number - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - lease
Start stringTime - metadata {[key: string]: any}
- A map of information returned by the Vault server about the authentication used to generate this token.
- namespace string
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - nonce string
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- pkcs7 string
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- policies string[]
- The Vault policies assigned to this token.
- renewable boolean
- Set to true if the token can be extended through renewal.
- role string
- The name of the AWS auth backend role to create tokens against.
- signature string
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- accessor str
- The token's accessor.
- auth_
type str - The authentication type used to generate this token.
- backend str
- The unique name of the AWS auth backend. Defaults to 'aws'.
- client_
token str - The token returned by Vault.
- iam_
http_ strrequest_ method - The HTTP method used in the signed IAM request.
- iam_
request_ strbody - The base64-encoded body of the signed request.
- iam_
request_ strheaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- iam_
request_ strurl - The base64-encoded HTTP URL used in the signed request.
- identity str
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- lease_
duration int - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - lease_
start_ strtime - metadata Mapping[str, Any]
- A map of information returned by the Vault server about the authentication used to generate this token.
- namespace str
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - nonce str
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- pkcs7 str
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- policies Sequence[str]
- The Vault policies assigned to this token.
- renewable bool
- Set to true if the token can be extended through renewal.
- role str
- The name of the AWS auth backend role to create tokens against.
- signature str
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- accessor String
- The token's accessor.
- auth
Type String - The authentication type used to generate this token.
- backend String
- The unique name of the AWS auth backend. Defaults to 'aws'.
- client
Token String - The token returned by Vault.
- iam
Http StringRequest Method - The HTTP method used in the signed IAM request.
- iam
Request StringBody - The base64-encoded body of the signed request.
- iam
Request StringHeaders - The base64-encoded, JSON serialized representation of the GetCallerIdentity HTTP request headers.
- iam
Request StringUrl - The base64-encoded HTTP URL used in the signed request.
- identity String
- The base64-encoded EC2 instance identity document to authenticate with. Can be retrieved from the EC2 metadata server.
- lease
Duration Number - The duration in seconds the token will be valid, relative
to the time in
lease_start_time
. - lease
Start StringTime - metadata Map<Any>
- A map of information returned by the Vault server about the authentication used to generate this token.
- namespace String
- The namespace to provision the resource in.
The value should not contain leading or trailing forward slashes.
The
namespace
is always relative to the provider's configured namespace. Available only for Vault Enterprise. - nonce String
- The unique nonce to be used for login requests. Can be set to a user-specified value, or will contain the server-generated value once a token is issued. EC2 instances can only acquire a single token until the whitelist is tidied again unless they keep track of this nonce.
- pkcs7 String
- The PKCS#7 signature of the identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
- policies List<String>
- The Vault policies assigned to this token.
- renewable Boolean
- Set to true if the token can be extended through renewal.
- role String
- The name of the AWS auth backend role to create tokens against.
- signature String
- The base64-encoded SHA256 RSA signature of the instance identity document to authenticate with, with all newline characters removed. Can be retrieved from the EC2 metadata server.
Package Details
- Repository
- Vault pulumi/pulumi-vault
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vault
Terraform Provider.