aiven.MysqlUser
Explore with Pulumi AI
The MySQL User resource allows the creation and management of Aiven MySQL Users.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const foo = new aiven.MysqlUser("foo", {
serviceName: bar.serviceName,
project: "my-project",
username: "user-1",
password: "Test$1234",
});
import pulumi
import pulumi_aiven as aiven
foo = aiven.MysqlUser("foo",
service_name=bar["serviceName"],
project="my-project",
username="user-1",
password="Test$1234")
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.NewMysqlUser(ctx, "foo", &aiven.MysqlUserArgs{
ServiceName: pulumi.Any(bar.ServiceName),
Project: pulumi.String("my-project"),
Username: pulumi.String("user-1"),
Password: pulumi.String("Test$1234"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var foo = new Aiven.MysqlUser("foo", new()
{
ServiceName = bar.ServiceName,
Project = "my-project",
Username = "user-1",
Password = "Test$1234",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.MysqlUser;
import com.pulumi.aiven.MysqlUserArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var foo = new MysqlUser("foo", MysqlUserArgs.builder()
.serviceName(bar.serviceName())
.project("my-project")
.username("user-1")
.password("Test$1234")
.build());
}
}
resources:
foo:
type: aiven:MysqlUser
properties:
serviceName: ${bar.serviceName}
project: my-project
username: user-1
password: Test$1234
Create MysqlUser Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MysqlUser(name: string, args: MysqlUserArgs, opts?: CustomResourceOptions);
@overload
def MysqlUser(resource_name: str,
args: MysqlUserArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MysqlUser(resource_name: str,
opts: Optional[ResourceOptions] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
username: Optional[str] = None,
authentication: Optional[str] = None,
password: Optional[str] = None)
func NewMysqlUser(ctx *Context, name string, args MysqlUserArgs, opts ...ResourceOption) (*MysqlUser, error)
public MysqlUser(string name, MysqlUserArgs args, CustomResourceOptions? opts = null)
public MysqlUser(String name, MysqlUserArgs args)
public MysqlUser(String name, MysqlUserArgs args, CustomResourceOptions options)
type: aiven:MysqlUser
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 MysqlUserArgs
- 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 MysqlUserArgs
- 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 MysqlUserArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MysqlUserArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MysqlUserArgs
- 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 mysqlUserResource = new Aiven.MysqlUser("mysqlUserResource", new()
{
Project = "string",
ServiceName = "string",
Username = "string",
Authentication = "string",
Password = "string",
});
example, err := aiven.NewMysqlUser(ctx, "mysqlUserResource", &aiven.MysqlUserArgs{
Project: pulumi.String("string"),
ServiceName: pulumi.String("string"),
Username: pulumi.String("string"),
Authentication: pulumi.String("string"),
Password: pulumi.String("string"),
})
var mysqlUserResource = new MysqlUser("mysqlUserResource", MysqlUserArgs.builder()
.project("string")
.serviceName("string")
.username("string")
.authentication("string")
.password("string")
.build());
mysql_user_resource = aiven.MysqlUser("mysqlUserResource",
project="string",
service_name="string",
username="string",
authentication="string",
password="string")
const mysqlUserResource = new aiven.MysqlUser("mysqlUserResource", {
project: "string",
serviceName: "string",
username: "string",
authentication: "string",
password: "string",
});
type: aiven:MysqlUser
properties:
authentication: string
password: string
project: string
serviceName: string
username: string
MysqlUser 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 MysqlUser resource accepts the following input properties:
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Username string
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Authentication string
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - Password string
- The password of the MySQL User ( not applicable for all services ).
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Username string
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Authentication string
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - Password string
- The password of the MySQL User ( not applicable for all services ).
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- username String
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- authentication String
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - password String
- The password of the MySQL User ( not applicable for all services ).
- project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- username string
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- authentication string
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - password string
- The password of the MySQL User ( not applicable for all services ).
- project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service_
name str - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- username str
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- authentication str
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - password str
- The password of the MySQL User ( not applicable for all services ).
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- username String
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- authentication String
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - password String
- The password of the MySQL User ( not applicable for all services ).
Outputs
All input properties are implicitly available as output properties. Additionally, the MysqlUser resource produces the following output properties:
- Access
Cert string - Access certificate for the user
- Access
Key string - Access certificate key for the user
- Id string
- The provider-assigned unique ID for this managed resource.
- Type string
- Type of the user account. Tells whether the user is the primary account or a regular account.
- Access
Cert string - Access certificate for the user
- Access
Key string - Access certificate key for the user
- Id string
- The provider-assigned unique ID for this managed resource.
- Type string
- Type of the user account. Tells whether the user is the primary account or a regular account.
- access
Cert String - Access certificate for the user
- access
Key String - Access certificate key for the user
- id String
- The provider-assigned unique ID for this managed resource.
- type String
- Type of the user account. Tells whether the user is the primary account or a regular account.
- access
Cert string - Access certificate for the user
- access
Key string - Access certificate key for the user
- id string
- The provider-assigned unique ID for this managed resource.
- type string
- Type of the user account. Tells whether the user is the primary account or a regular account.
- access_
cert str - Access certificate for the user
- access_
key str - Access certificate key for the user
- id str
- The provider-assigned unique ID for this managed resource.
- type str
- Type of the user account. Tells whether the user is the primary account or a regular account.
- access
Cert String - Access certificate for the user
- access
Key String - Access certificate key for the user
- id String
- The provider-assigned unique ID for this managed resource.
- type String
- Type of the user account. Tells whether the user is the primary account or a regular account.
Look up Existing MysqlUser Resource
Get an existing MysqlUser 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?: MysqlUserState, opts?: CustomResourceOptions): MysqlUser
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_cert: Optional[str] = None,
access_key: Optional[str] = None,
authentication: Optional[str] = None,
password: Optional[str] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
type: Optional[str] = None,
username: Optional[str] = None) -> MysqlUser
func GetMysqlUser(ctx *Context, name string, id IDInput, state *MysqlUserState, opts ...ResourceOption) (*MysqlUser, error)
public static MysqlUser Get(string name, Input<string> id, MysqlUserState? state, CustomResourceOptions? opts = null)
public static MysqlUser get(String name, Output<String> id, MysqlUserState 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.
- Access
Cert string - Access certificate for the user
- Access
Key string - Access certificate key for the user
- Authentication string
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - Password string
- The password of the MySQL User ( not applicable for all services ).
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Type string
- Type of the user account. Tells whether the user is the primary account or a regular account.
- Username string
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Access
Cert string - Access certificate for the user
- Access
Key string - Access certificate key for the user
- Authentication string
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - Password string
- The password of the MySQL User ( not applicable for all services ).
- Project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- Type string
- Type of the user account. Tells whether the user is the primary account or a regular account.
- Username string
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- access
Cert String - Access certificate for the user
- access
Key String - Access certificate key for the user
- authentication String
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - password String
- The password of the MySQL User ( not applicable for all services ).
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- type String
- Type of the user account. Tells whether the user is the primary account or a regular account.
- username String
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- access
Cert string - Access certificate for the user
- access
Key string - Access certificate key for the user
- authentication string
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - password string
- The password of the MySQL User ( not applicable for all services ).
- project string
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name string - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- type string
- Type of the user account. Tells whether the user is the primary account or a regular account.
- username string
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- access_
cert str - Access certificate for the user
- access_
key str - Access certificate key for the user
- authentication str
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - password str
- The password of the MySQL User ( not applicable for all services ).
- project str
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service_
name str - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- type str
- Type of the user account. Tells whether the user is the primary account or a regular account.
- username str
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- access
Cert String - Access certificate for the user
- access
Key String - Access certificate key for the user
- authentication String
- Authentication details. The possible values are
null
,caching_sha2_password
andmysql_native_password
. - password String
- The password of the MySQL User ( not applicable for all services ).
- project String
- The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- service
Name String - The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
- type String
- Type of the user account. Tells whether the user is the primary account or a regular account.
- username String
- The actual name of the MySQL User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
Import
$ pulumi import aiven:index/mysqlUser:MysqlUser foo PROJECT/SERVICE_NAME/USERNAME
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.