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=aiven.AccountAuthenticationSamlFieldMappingArgs(
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
The AccountAuthentication resource accepts the following input properties:
- Account
Id string - The unique id of the account.
- Type string
- The account authentication type. The possible values are
internal
andsaml
. - Auto
Join stringTeam Id - Team ID
- Enabled bool
- Status of account authentication method. The default value is
false
. - Name string
- The name of the account authentication.
- Saml
Certificate string - SAML Certificate
- Saml
Digest stringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- Saml
Entity stringId - SAML Entity id
- Saml
Field AccountMapping Authentication Saml Field Mapping - Map IdP fields
- Saml
Idp boolLogin Allowed - Set to 'true' to enable IdP initiated login
- Saml
Idp stringUrl - SAML Idp URL
- Saml
Signature stringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- Saml
Variant string - SAML server variant
- Account
Id string - The unique id of the account.
- Type string
- The account authentication type. The possible values are
internal
andsaml
. - Auto
Join stringTeam Id - Team ID
- Enabled bool
- Status of account authentication method. The default value is
false
. - Name string
- The name of the account authentication.
- Saml
Certificate string - SAML Certificate
- Saml
Digest stringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- Saml
Entity stringId - 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 stringUrl - SAML Idp URL
- Saml
Signature stringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- Saml
Variant string - SAML server variant
- account
Id String - The unique id of the account.
- type String
- The account authentication type. The possible values are
internal
andsaml
. - auto
Join StringTeam Id - Team ID
- enabled Boolean
- Status of account authentication method. The default value is
false
. - name String
- The name of the account authentication.
- saml
Certificate String - SAML Certificate
- saml
Digest StringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- saml
Entity StringId - SAML Entity id
- saml
Field AccountMapping Authentication Saml Field Mapping - Map IdP fields
- saml
Idp BooleanLogin Allowed - Set to 'true' to enable IdP initiated login
- saml
Idp StringUrl - SAML Idp URL
- saml
Signature StringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- saml
Variant String - SAML server variant
- account
Id string - The unique id of the account.
- type string
- The account authentication type. The possible values are
internal
andsaml
. - auto
Join stringTeam Id - Team ID
- enabled boolean
- Status of account authentication method. The default value is
false
. - name string
- The name of the account authentication.
- saml
Certificate string - SAML Certificate
- saml
Digest stringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- saml
Entity stringId - SAML Entity id
- saml
Field AccountMapping Authentication Saml Field Mapping - Map IdP fields
- saml
Idp booleanLogin Allowed - Set to 'true' to enable IdP initiated login
- saml
Idp stringUrl - SAML Idp URL
- saml
Signature stringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- saml
Variant string - SAML server variant
- account_
id str - The unique id of the account.
- type str
- The account authentication type. The possible values are
internal
andsaml
. - 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
- account
Id String - The unique id of the account.
- type String
- The account authentication type. The possible values are
internal
andsaml
. - auto
Join StringTeam Id - Team ID
- enabled Boolean
- Status of account authentication method. The default value is
false
. - name String
- The name of the account authentication.
- saml
Certificate String - SAML Certificate
- saml
Digest StringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- saml
Entity StringId - SAML Entity id
- saml
Field Property MapMapping - Map IdP fields
- saml
Idp BooleanLogin Allowed - Set to 'true' to enable IdP initiated login
- saml
Idp StringUrl - SAML Idp URL
- saml
Signature StringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- saml
Variant String - SAML server variant
Outputs
All input properties are implicitly available as output properties. Additionally, the AccountAuthentication resource produces the following output properties:
- Authentication
Id string - Account authentication id
- Create
Time string - Time of creation
- Id string
- The provider-assigned unique ID for this managed resource.
- Saml
Acs stringUrl - SAML Assertion Consumer Service URL
- Saml
Metadata stringUrl - SAML Metadata URL
- Update
Time string - Time of last update
- Authentication
Id string - Account authentication id
- Create
Time string - Time of creation
- Id string
- The provider-assigned unique ID for this managed resource.
- Saml
Acs stringUrl - SAML Assertion Consumer Service URL
- Saml
Metadata stringUrl - SAML Metadata URL
- Update
Time string - Time of last update
- authentication
Id String - Account authentication id
- create
Time String - Time of creation
- id String
- The provider-assigned unique ID for this managed resource.
- saml
Acs StringUrl - SAML Assertion Consumer Service URL
- saml
Metadata StringUrl - SAML Metadata URL
- update
Time String - Time of last update
- authentication
Id string - Account authentication id
- create
Time string - Time of creation
- id string
- The provider-assigned unique ID for this managed resource.
- saml
Acs stringUrl - SAML Assertion Consumer Service URL
- saml
Metadata stringUrl - SAML Metadata URL
- update
Time 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
- authentication
Id String - Account authentication id
- create
Time String - Time of creation
- id String
- The provider-assigned unique ID for this managed resource.
- saml
Acs StringUrl - SAML Assertion Consumer Service URL
- saml
Metadata StringUrl - SAML Metadata URL
- update
Time 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) -> AccountAuthentication
func 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)
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.
- Account
Id string - The unique id of the account.
- Authentication
Id string - Account authentication id
- Auto
Join stringTeam Id - Team ID
- Create
Time string - Time of creation
- Enabled bool
- Status of account authentication method. The default value is
false
. - Name string
- The name of the account authentication.
- Saml
Acs stringUrl - SAML Assertion Consumer Service URL
- Saml
Certificate string - SAML Certificate
- Saml
Digest stringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- Saml
Entity stringId - SAML Entity id
- Saml
Field AccountMapping Authentication Saml Field Mapping - Map IdP fields
- Saml
Idp boolLogin Allowed - Set to 'true' to enable IdP initiated login
- Saml
Idp stringUrl - SAML Idp URL
- Saml
Metadata stringUrl - SAML Metadata URL
- Saml
Signature stringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- Saml
Variant string - SAML server variant
- Type string
- The account authentication type. The possible values are
internal
andsaml
. - Update
Time string - Time of last update
- Account
Id string - The unique id of the account.
- Authentication
Id string - Account authentication id
- Auto
Join stringTeam Id - Team ID
- Create
Time string - Time of creation
- Enabled bool
- Status of account authentication method. The default value is
false
. - Name string
- The name of the account authentication.
- Saml
Acs stringUrl - SAML Assertion Consumer Service URL
- Saml
Certificate string - SAML Certificate
- Saml
Digest stringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- Saml
Entity stringId - 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 stringUrl - SAML Idp URL
- Saml
Metadata stringUrl - SAML Metadata URL
- Saml
Signature stringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- Saml
Variant string - SAML server variant
- Type string
- The account authentication type. The possible values are
internal
andsaml
. - Update
Time string - Time of last update
- account
Id String - The unique id of the account.
- authentication
Id String - Account authentication id
- auto
Join StringTeam Id - Team ID
- create
Time String - Time of creation
- enabled Boolean
- Status of account authentication method. The default value is
false
. - name String
- The name of the account authentication.
- saml
Acs StringUrl - SAML Assertion Consumer Service URL
- saml
Certificate String - SAML Certificate
- saml
Digest StringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- saml
Entity StringId - SAML Entity id
- saml
Field AccountMapping Authentication Saml Field Mapping - Map IdP fields
- saml
Idp BooleanLogin Allowed - Set to 'true' to enable IdP initiated login
- saml
Idp StringUrl - SAML Idp URL
- saml
Metadata StringUrl - SAML Metadata URL
- saml
Signature StringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- saml
Variant String - SAML server variant
- type String
- The account authentication type. The possible values are
internal
andsaml
. - update
Time String - Time of last update
- account
Id string - The unique id of the account.
- authentication
Id string - Account authentication id
- auto
Join stringTeam Id - Team ID
- create
Time string - Time of creation
- enabled boolean
- Status of account authentication method. The default value is
false
. - name string
- The name of the account authentication.
- saml
Acs stringUrl - SAML Assertion Consumer Service URL
- saml
Certificate string - SAML Certificate
- saml
Digest stringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- saml
Entity stringId - SAML Entity id
- saml
Field AccountMapping Authentication Saml Field Mapping - Map IdP fields
- saml
Idp booleanLogin Allowed - Set to 'true' to enable IdP initiated login
- saml
Idp stringUrl - SAML Idp URL
- saml
Metadata stringUrl - SAML Metadata URL
- saml
Signature stringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- saml
Variant string - SAML server variant
- type string
- The account authentication type. The possible values are
internal
andsaml
. - update
Time 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
internal
andsaml
. - update_
time str - Time of last update
- account
Id String - The unique id of the account.
- authentication
Id String - Account authentication id
- auto
Join StringTeam Id - Team ID
- create
Time String - Time of creation
- enabled Boolean
- Status of account authentication method. The default value is
false
. - name String
- The name of the account authentication.
- saml
Acs StringUrl - SAML Assertion Consumer Service URL
- saml
Certificate String - SAML Certificate
- saml
Digest StringAlgorithm - Digest algorithm. This is an advanced option that typically does not need to be set.
- saml
Entity StringId - SAML Entity id
- saml
Field Property MapMapping - Map IdP fields
- saml
Idp BooleanLogin Allowed - Set to 'true' to enable IdP initiated login
- saml
Idp StringUrl - SAML Idp URL
- saml
Metadata StringUrl - SAML Metadata URL
- saml
Signature StringAlgorithm - Signature algorithm. This is an advanced option that typically does not need to be set.
- saml
Variant String - SAML server variant
- type String
- The account authentication type. The possible values are
internal
andsaml
. - update
Time String - Time of last update
Supporting Types
AccountAuthenticationSamlFieldMapping, AccountAuthenticationSamlFieldMappingArgs
- Email string
- Field name for user email
- First
Name 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.
- Last
Name string - Field name for user's last name
- Real
Name string - Field name for user's full name. If specified, firstname and lastname mappings are ignored
- Email string
- Field name for user email
- First
Name 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.
- Last
Name string - Field name for user's last name
- Real
Name string - Field name for user's full name. If specified, firstname and lastname mappings are ignored
- email String
- Field name for user email
- first
Name 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.
- last
Name String - Field name for user's last name
- real
Name String - Field name for user's full name. If specified, firstname and lastname mappings are ignored
- email string
- Field name for user email
- first
Name 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.
- last
Name string - Field name for user's last name
- real
Name 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
- first
Name 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.
- last
Name String - Field name for user's last name
- real
Name 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
aiven
Terraform Provider.