aiven.AccountAuthentication
Explore with Pulumi AI
Creates and manages an authentication method.
This resource is deprecated To set up an identity provider as an authentication method for your organization, use the Aiven Console. It guides you through the steps and explains the settings.
Create AccountAuthentication Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AccountAuthentication(name: string, args: AccountAuthenticationArgs, opts?: CustomResourceOptions);@overload
def AccountAuthentication(resource_name: str,
                          args: AccountAuthenticationArgs,
                          opts: Optional[ResourceOptions] = None)
@overload
def AccountAuthentication(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          account_id: Optional[str] = None,
                          type: Optional[str] = None,
                          saml_entity_id: Optional[str] = None,
                          name: Optional[str] = None,
                          saml_certificate: Optional[str] = None,
                          saml_digest_algorithm: Optional[str] = None,
                          enabled: Optional[bool] = None,
                          saml_field_mapping: Optional[AccountAuthenticationSamlFieldMappingArgs] = None,
                          saml_idp_login_allowed: Optional[bool] = None,
                          saml_idp_url: Optional[str] = None,
                          saml_signature_algorithm: Optional[str] = None,
                          saml_variant: Optional[str] = None,
                          auto_join_team_id: Optional[str] = None)func NewAccountAuthentication(ctx *Context, name string, args AccountAuthenticationArgs, opts ...ResourceOption) (*AccountAuthentication, error)public AccountAuthentication(string name, AccountAuthenticationArgs args, CustomResourceOptions? opts = null)
public AccountAuthentication(String name, AccountAuthenticationArgs args)
public AccountAuthentication(String name, AccountAuthenticationArgs args, CustomResourceOptions options)
type: aiven:AccountAuthentication
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 AccountAuthenticationArgs
- 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 AccountAuthenticationArgs
- 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 AccountAuthenticationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountAuthenticationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountAuthenticationArgs
- 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 accountAuthenticationResource = new Aiven.AccountAuthentication("accountAuthenticationResource", new()
{
    AccountId = "string",
    Type = "string",
    SamlEntityId = "string",
    Name = "string",
    SamlCertificate = "string",
    SamlDigestAlgorithm = "string",
    Enabled = false,
    SamlFieldMapping = new Aiven.Inputs.AccountAuthenticationSamlFieldMappingArgs
    {
        Email = "string",
        FirstName = "string",
        Identity = "string",
        LastName = "string",
        RealName = "string",
    },
    SamlIdpLoginAllowed = false,
    SamlIdpUrl = "string",
    SamlSignatureAlgorithm = "string",
    SamlVariant = "string",
    AutoJoinTeamId = "string",
});
example, err := aiven.NewAccountAuthentication(ctx, "accountAuthenticationResource", &aiven.AccountAuthenticationArgs{
	AccountId:           pulumi.String("string"),
	Type:                pulumi.String("string"),
	SamlEntityId:        pulumi.String("string"),
	Name:                pulumi.String("string"),
	SamlCertificate:     pulumi.String("string"),
	SamlDigestAlgorithm: pulumi.String("string"),
	Enabled:             pulumi.Bool(false),
	SamlFieldMapping: &aiven.AccountAuthenticationSamlFieldMappingArgs{
		Email:     pulumi.String("string"),
		FirstName: pulumi.String("string"),
		Identity:  pulumi.String("string"),
		LastName:  pulumi.String("string"),
		RealName:  pulumi.String("string"),
	},
	SamlIdpLoginAllowed:    pulumi.Bool(false),
	SamlIdpUrl:             pulumi.String("string"),
	SamlSignatureAlgorithm: pulumi.String("string"),
	SamlVariant:            pulumi.String("string"),
	AutoJoinTeamId:         pulumi.String("string"),
})
var accountAuthenticationResource = new AccountAuthentication("accountAuthenticationResource", AccountAuthenticationArgs.builder()
    .accountId("string")
    .type("string")
    .samlEntityId("string")
    .name("string")
    .samlCertificate("string")
    .samlDigestAlgorithm("string")
    .enabled(false)
    .samlFieldMapping(AccountAuthenticationSamlFieldMappingArgs.builder()
        .email("string")
        .firstName("string")
        .identity("string")
        .lastName("string")
        .realName("string")
        .build())
    .samlIdpLoginAllowed(false)
    .samlIdpUrl("string")
    .samlSignatureAlgorithm("string")
    .samlVariant("string")
    .autoJoinTeamId("string")
    .build());
account_authentication_resource = aiven.AccountAuthentication("accountAuthenticationResource",
    account_id="string",
    type="string",
    saml_entity_id="string",
    name="string",
    saml_certificate="string",
    saml_digest_algorithm="string",
    enabled=False,
    saml_field_mapping={
        "email": "string",
        "first_name": "string",
        "identity": "string",
        "last_name": "string",
        "real_name": "string",
    },
    saml_idp_login_allowed=False,
    saml_idp_url="string",
    saml_signature_algorithm="string",
    saml_variant="string",
    auto_join_team_id="string")
const accountAuthenticationResource = new aiven.AccountAuthentication("accountAuthenticationResource", {
    accountId: "string",
    type: "string",
    samlEntityId: "string",
    name: "string",
    samlCertificate: "string",
    samlDigestAlgorithm: "string",
    enabled: false,
    samlFieldMapping: {
        email: "string",
        firstName: "string",
        identity: "string",
        lastName: "string",
        realName: "string",
    },
    samlIdpLoginAllowed: false,
    samlIdpUrl: "string",
    samlSignatureAlgorithm: "string",
    samlVariant: "string",
    autoJoinTeamId: "string",
});
type: aiven:AccountAuthentication
properties:
    accountId: string
    autoJoinTeamId: string
    enabled: false
    name: string
    samlCertificate: string
    samlDigestAlgorithm: string
    samlEntityId: string
    samlFieldMapping:
        email: string
        firstName: string
        identity: string
        lastName: string
        realName: string
    samlIdpLoginAllowed: false
    samlIdpUrl: string
    samlSignatureAlgorithm: string
    samlVariant: string
    type: string
AccountAuthentication 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 AccountAuthentication resource accepts the following input properties:
- AccountId string
- The unique id of the account.
- Type string
- The account authentication type. The possible values are internalandsaml.
- AutoJoin stringTeam Id 
- Team ID
- Enabled bool
- Status of account authentication method. The default value is false.
- Name string
- The name of the account authentication.
- SamlCertificate string
- SAML Certificate
- SamlDigest stringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- SamlEntity stringId 
- SAML Entity id
- SamlField AccountMapping Authentication Saml Field Mapping 
- Map IdP fields
- SamlIdp boolLogin Allowed 
- Set to 'true' to enable IdP initiated login
- SamlIdp stringUrl 
- SAML Idp URL
- SamlSignature stringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- SamlVariant string
- SAML server variant
- AccountId string
- The unique id of the account.
- Type string
- The account authentication type. The possible values are internalandsaml.
- AutoJoin stringTeam Id 
- Team ID
- Enabled bool
- Status of account authentication method. The default value is false.
- Name string
- The name of the account authentication.
- SamlCertificate string
- SAML Certificate
- SamlDigest stringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- SamlEntity stringId 
- SAML Entity id
- SamlField AccountMapping Authentication Saml Field Mapping Args 
- Map IdP fields
- SamlIdp boolLogin Allowed 
- Set to 'true' to enable IdP initiated login
- SamlIdp stringUrl 
- SAML Idp URL
- SamlSignature stringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- SamlVariant string
- SAML server variant
- accountId String
- The unique id of the account.
- type String
- The account authentication type. The possible values are internalandsaml.
- autoJoin StringTeam Id 
- Team ID
- enabled Boolean
- Status of account authentication method. The default value is false.
- name String
- The name of the account authentication.
- samlCertificate String
- SAML Certificate
- samlDigest StringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- samlEntity StringId 
- SAML Entity id
- samlField AccountMapping Authentication Saml Field Mapping 
- Map IdP fields
- samlIdp BooleanLogin Allowed 
- Set to 'true' to enable IdP initiated login
- samlIdp StringUrl 
- SAML Idp URL
- samlSignature StringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- samlVariant String
- SAML server variant
- accountId string
- The unique id of the account.
- type string
- The account authentication type. The possible values are internalandsaml.
- autoJoin stringTeam Id 
- Team ID
- enabled boolean
- Status of account authentication method. The default value is false.
- name string
- The name of the account authentication.
- samlCertificate string
- SAML Certificate
- samlDigest stringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- samlEntity stringId 
- SAML Entity id
- samlField AccountMapping Authentication Saml Field Mapping 
- Map IdP fields
- samlIdp booleanLogin Allowed 
- Set to 'true' to enable IdP initiated login
- samlIdp stringUrl 
- SAML Idp URL
- samlSignature stringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- samlVariant string
- SAML server variant
- account_id str
- The unique id of the account.
- type str
- The account authentication type. The possible values are internalandsaml.
- auto_join_ strteam_ id 
- Team ID
- enabled bool
- Status of account authentication method. The default value is false.
- name str
- The name of the account authentication.
- saml_certificate str
- SAML Certificate
- saml_digest_ stralgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- saml_entity_ strid 
- SAML Entity id
- saml_field_ Accountmapping Authentication Saml Field Mapping Args 
- Map IdP fields
- saml_idp_ boollogin_ allowed 
- Set to 'true' to enable IdP initiated login
- saml_idp_ strurl 
- SAML Idp URL
- saml_signature_ stralgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- saml_variant str
- SAML server variant
- accountId String
- The unique id of the account.
- type String
- The account authentication type. The possible values are internalandsaml.
- autoJoin StringTeam Id 
- Team ID
- enabled Boolean
- Status of account authentication method. The default value is false.
- name String
- The name of the account authentication.
- samlCertificate String
- SAML Certificate
- samlDigest StringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- samlEntity StringId 
- SAML Entity id
- samlField Property MapMapping 
- Map IdP fields
- samlIdp BooleanLogin Allowed 
- Set to 'true' to enable IdP initiated login
- samlIdp StringUrl 
- SAML Idp URL
- samlSignature StringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- samlVariant String
- SAML server variant
Outputs
All input properties are implicitly available as output properties. Additionally, the AccountAuthentication resource produces the following output properties:
- AuthenticationId string
- Account authentication id
- CreateTime string
- Time of creation
- Id string
- The provider-assigned unique ID for this managed resource.
- SamlAcs stringUrl 
- SAML Assertion Consumer Service URL
- SamlMetadata stringUrl 
- SAML Metadata URL
- UpdateTime string
- Time of last update
- AuthenticationId string
- Account authentication id
- CreateTime string
- Time of creation
- Id string
- The provider-assigned unique ID for this managed resource.
- SamlAcs stringUrl 
- SAML Assertion Consumer Service URL
- SamlMetadata stringUrl 
- SAML Metadata URL
- UpdateTime string
- Time of last update
- authenticationId String
- Account authentication id
- createTime String
- Time of creation
- id String
- The provider-assigned unique ID for this managed resource.
- samlAcs StringUrl 
- SAML Assertion Consumer Service URL
- samlMetadata StringUrl 
- SAML Metadata URL
- updateTime String
- Time of last update
- authenticationId string
- Account authentication id
- createTime string
- Time of creation
- id string
- The provider-assigned unique ID for this managed resource.
- samlAcs stringUrl 
- SAML Assertion Consumer Service URL
- samlMetadata stringUrl 
- SAML Metadata URL
- updateTime string
- Time of last update
- authentication_id str
- Account authentication id
- create_time str
- Time of creation
- id str
- The provider-assigned unique ID for this managed resource.
- saml_acs_ strurl 
- SAML Assertion Consumer Service URL
- saml_metadata_ strurl 
- SAML Metadata URL
- update_time str
- Time of last update
- authenticationId String
- Account authentication id
- createTime String
- Time of creation
- id String
- The provider-assigned unique ID for this managed resource.
- samlAcs StringUrl 
- SAML Assertion Consumer Service URL
- samlMetadata StringUrl 
- SAML Metadata URL
- updateTime String
- Time of last update
Look up Existing AccountAuthentication Resource
Get an existing AccountAuthentication 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?: AccountAuthenticationState, opts?: CustomResourceOptions): AccountAuthentication@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_id: Optional[str] = None,
        authentication_id: Optional[str] = None,
        auto_join_team_id: Optional[str] = None,
        create_time: Optional[str] = None,
        enabled: Optional[bool] = None,
        name: Optional[str] = None,
        saml_acs_url: Optional[str] = None,
        saml_certificate: Optional[str] = None,
        saml_digest_algorithm: Optional[str] = None,
        saml_entity_id: Optional[str] = None,
        saml_field_mapping: Optional[AccountAuthenticationSamlFieldMappingArgs] = None,
        saml_idp_login_allowed: Optional[bool] = None,
        saml_idp_url: Optional[str] = None,
        saml_metadata_url: Optional[str] = None,
        saml_signature_algorithm: Optional[str] = None,
        saml_variant: Optional[str] = None,
        type: Optional[str] = None,
        update_time: Optional[str] = None) -> AccountAuthenticationfunc GetAccountAuthentication(ctx *Context, name string, id IDInput, state *AccountAuthenticationState, opts ...ResourceOption) (*AccountAuthentication, error)public static AccountAuthentication Get(string name, Input<string> id, AccountAuthenticationState? state, CustomResourceOptions? opts = null)public static AccountAuthentication get(String name, Output<String> id, AccountAuthenticationState state, CustomResourceOptions options)resources:  _:    type: aiven:AccountAuthentication    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AccountId string
- The unique id of the account.
- AuthenticationId string
- Account authentication id
- AutoJoin stringTeam Id 
- Team ID
- CreateTime string
- Time of creation
- Enabled bool
- Status of account authentication method. The default value is false.
- Name string
- The name of the account authentication.
- SamlAcs stringUrl 
- SAML Assertion Consumer Service URL
- SamlCertificate string
- SAML Certificate
- SamlDigest stringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- SamlEntity stringId 
- SAML Entity id
- SamlField AccountMapping Authentication Saml Field Mapping 
- Map IdP fields
- SamlIdp boolLogin Allowed 
- Set to 'true' to enable IdP initiated login
- SamlIdp stringUrl 
- SAML Idp URL
- SamlMetadata stringUrl 
- SAML Metadata URL
- SamlSignature stringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- SamlVariant string
- SAML server variant
- Type string
- The account authentication type. The possible values are internalandsaml.
- UpdateTime string
- Time of last update
- AccountId string
- The unique id of the account.
- AuthenticationId string
- Account authentication id
- AutoJoin stringTeam Id 
- Team ID
- CreateTime string
- Time of creation
- Enabled bool
- Status of account authentication method. The default value is false.
- Name string
- The name of the account authentication.
- SamlAcs stringUrl 
- SAML Assertion Consumer Service URL
- SamlCertificate string
- SAML Certificate
- SamlDigest stringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- SamlEntity stringId 
- SAML Entity id
- SamlField AccountMapping Authentication Saml Field Mapping Args 
- Map IdP fields
- SamlIdp boolLogin Allowed 
- Set to 'true' to enable IdP initiated login
- SamlIdp stringUrl 
- SAML Idp URL
- SamlMetadata stringUrl 
- SAML Metadata URL
- SamlSignature stringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- SamlVariant string
- SAML server variant
- Type string
- The account authentication type. The possible values are internalandsaml.
- UpdateTime string
- Time of last update
- accountId String
- The unique id of the account.
- authenticationId String
- Account authentication id
- autoJoin StringTeam Id 
- Team ID
- createTime String
- Time of creation
- enabled Boolean
- Status of account authentication method. The default value is false.
- name String
- The name of the account authentication.
- samlAcs StringUrl 
- SAML Assertion Consumer Service URL
- samlCertificate String
- SAML Certificate
- samlDigest StringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- samlEntity StringId 
- SAML Entity id
- samlField AccountMapping Authentication Saml Field Mapping 
- Map IdP fields
- samlIdp BooleanLogin Allowed 
- Set to 'true' to enable IdP initiated login
- samlIdp StringUrl 
- SAML Idp URL
- samlMetadata StringUrl 
- SAML Metadata URL
- samlSignature StringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- samlVariant String
- SAML server variant
- type String
- The account authentication type. The possible values are internalandsaml.
- updateTime String
- Time of last update
- accountId string
- The unique id of the account.
- authenticationId string
- Account authentication id
- autoJoin stringTeam Id 
- Team ID
- createTime string
- Time of creation
- enabled boolean
- Status of account authentication method. The default value is false.
- name string
- The name of the account authentication.
- samlAcs stringUrl 
- SAML Assertion Consumer Service URL
- samlCertificate string
- SAML Certificate
- samlDigest stringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- samlEntity stringId 
- SAML Entity id
- samlField AccountMapping Authentication Saml Field Mapping 
- Map IdP fields
- samlIdp booleanLogin Allowed 
- Set to 'true' to enable IdP initiated login
- samlIdp stringUrl 
- SAML Idp URL
- samlMetadata stringUrl 
- SAML Metadata URL
- samlSignature stringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- samlVariant string
- SAML server variant
- type string
- The account authentication type. The possible values are internalandsaml.
- updateTime string
- Time of last update
- account_id str
- The unique id of the account.
- authentication_id str
- Account authentication id
- auto_join_ strteam_ id 
- Team ID
- create_time str
- Time of creation
- enabled bool
- Status of account authentication method. The default value is false.
- name str
- The name of the account authentication.
- saml_acs_ strurl 
- SAML Assertion Consumer Service URL
- saml_certificate str
- SAML Certificate
- saml_digest_ stralgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- saml_entity_ strid 
- SAML Entity id
- saml_field_ Accountmapping Authentication Saml Field Mapping Args 
- Map IdP fields
- saml_idp_ boollogin_ allowed 
- Set to 'true' to enable IdP initiated login
- saml_idp_ strurl 
- SAML Idp URL
- saml_metadata_ strurl 
- SAML Metadata URL
- saml_signature_ stralgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- saml_variant str
- SAML server variant
- type str
- The account authentication type. The possible values are internalandsaml.
- update_time str
- Time of last update
- accountId String
- The unique id of the account.
- authenticationId String
- Account authentication id
- autoJoin StringTeam Id 
- Team ID
- createTime String
- Time of creation
- enabled Boolean
- Status of account authentication method. The default value is false.
- name String
- The name of the account authentication.
- samlAcs StringUrl 
- SAML Assertion Consumer Service URL
- samlCertificate String
- SAML Certificate
- samlDigest StringAlgorithm 
- Digest algorithm. This is an advanced option that typically does not need to be set.
- samlEntity StringId 
- SAML Entity id
- samlField Property MapMapping 
- Map IdP fields
- samlIdp BooleanLogin Allowed 
- Set to 'true' to enable IdP initiated login
- samlIdp StringUrl 
- SAML Idp URL
- samlMetadata StringUrl 
- SAML Metadata URL
- samlSignature StringAlgorithm 
- Signature algorithm. This is an advanced option that typically does not need to be set.
- samlVariant String
- SAML server variant
- type String
- The account authentication type. The possible values are internalandsaml.
- updateTime String
- Time of last update
Supporting Types
AccountAuthenticationSamlFieldMapping, AccountAuthenticationSamlFieldMappingArgs          
- Email string
- Field name for user email
- FirstName string
- Field name for user's first name
- Identity string
- Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
- LastName string
- Field name for user's last name
- RealName string
- Field name for user's full name. If specified, firstname and lastname mappings are ignored
- Email string
- Field name for user email
- FirstName string
- Field name for user's first name
- Identity string
- Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
- LastName string
- Field name for user's last name
- RealName string
- Field name for user's full name. If specified, firstname and lastname mappings are ignored
- email String
- Field name for user email
- firstName String
- Field name for user's first name
- identity String
- Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
- lastName String
- Field name for user's last name
- realName String
- Field name for user's full name. If specified, firstname and lastname mappings are ignored
- email string
- Field name for user email
- firstName string
- Field name for user's first name
- identity string
- Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
- lastName string
- Field name for user's last name
- realName string
- Field name for user's full name. If specified, firstname and lastname mappings are ignored
- email str
- Field name for user email
- first_name str
- Field name for user's first name
- identity str
- Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
- last_name str
- Field name for user's last name
- real_name str
- Field name for user's full name. If specified, firstname and lastname mappings are ignored
- email String
- Field name for user email
- firstName String
- Field name for user's first name
- identity String
- Field name for user's identity. This field must always exist in responses, and must be immutable and unique. Contents of this field are used to identify the user. Using user ID (such as unix user id) is highly recommended, as email address may change, requiring relinking user to Aiven user.
- lastName String
- Field name for user's last name
- realName String
- Field name for user's full name. If specified, firstname and lastname mappings are ignored
Import
$ pulumi import aiven:index/accountAuthentication:AccountAuthentication foo ACCOUNT_ID/AUTHENTICATION_ID
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the aivenTerraform Provider.