alicloud.polardb.AccountPrivilege
Explore with Pulumi AI
Provides a PolarDB account privilege resource and used to grant several database some access privilege. A database can be granted by multiple account.
NOTE: Available in v1.67.0+.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const default = alicloud.polardb.getNodeClasses({
dbType: "MySQL",
dbVersion: "8.0",
payType: "PostPaid",
category: "Normal",
});
const defaultNetwork = new alicloud.vpc.Network("default", {
vpcName: "terraform-example",
cidrBlock: "172.16.0.0/16",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
vpcId: defaultNetwork.id,
cidrBlock: "172.16.0.0/24",
zoneId: _default.then(_default => _default.classes?.[0]?.zoneId),
vswitchName: "terraform-example",
});
const defaultCluster = new alicloud.polardb.Cluster("default", {
dbType: "MySQL",
dbVersion: "8.0",
dbNodeClass: _default.then(_default => _default.classes?.[0]?.supportedEngines?.[0]?.availableResources?.[0]?.dbNodeClass),
payType: "PostPaid",
vswitchId: defaultSwitch.id,
description: "terraform-example",
});
const defaultAccount = new alicloud.polardb.Account("default", {
dbClusterId: defaultCluster.id,
accountName: "terraform_example",
accountPassword: "Example1234",
accountDescription: "terraform-example",
});
const defaultDatabase = new alicloud.polardb.Database("default", {
dbClusterId: defaultCluster.id,
dbName: "terraform-example",
});
const defaultAccountPrivilege = new alicloud.polardb.AccountPrivilege("default", {
dbClusterId: defaultCluster.id,
accountName: defaultAccount.accountName,
accountPrivilege: "ReadOnly",
dbNames: [defaultDatabase.dbName],
});
import pulumi
import pulumi_alicloud as alicloud
default = alicloud.polardb.get_node_classes(db_type="MySQL",
db_version="8.0",
pay_type="PostPaid",
category="Normal")
default_network = alicloud.vpc.Network("default",
vpc_name="terraform-example",
cidr_block="172.16.0.0/16")
default_switch = alicloud.vpc.Switch("default",
vpc_id=default_network.id,
cidr_block="172.16.0.0/24",
zone_id=default.classes[0].zone_id,
vswitch_name="terraform-example")
default_cluster = alicloud.polardb.Cluster("default",
db_type="MySQL",
db_version="8.0",
db_node_class=default.classes[0].supported_engines[0].available_resources[0].db_node_class,
pay_type="PostPaid",
vswitch_id=default_switch.id,
description="terraform-example")
default_account = alicloud.polardb.Account("default",
db_cluster_id=default_cluster.id,
account_name="terraform_example",
account_password="Example1234",
account_description="terraform-example")
default_database = alicloud.polardb.Database("default",
db_cluster_id=default_cluster.id,
db_name="terraform-example")
default_account_privilege = alicloud.polardb.AccountPrivilege("default",
db_cluster_id=default_cluster.id,
account_name=default_account.account_name,
account_privilege="ReadOnly",
db_names=[default_database.db_name])
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/polardb"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_default, err := polardb.GetNodeClasses(ctx, &polardb.GetNodeClassesArgs{
DbType: pulumi.StringRef("MySQL"),
DbVersion: pulumi.StringRef("8.0"),
PayType: "PostPaid",
Category: pulumi.StringRef("Normal"),
}, nil)
if err != nil {
return err
}
defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
VpcName: pulumi.String("terraform-example"),
CidrBlock: pulumi.String("172.16.0.0/16"),
})
if err != nil {
return err
}
defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
VpcId: defaultNetwork.ID(),
CidrBlock: pulumi.String("172.16.0.0/24"),
ZoneId: pulumi.String(_default.Classes[0].ZoneId),
VswitchName: pulumi.String("terraform-example"),
})
if err != nil {
return err
}
defaultCluster, err := polardb.NewCluster(ctx, "default", &polardb.ClusterArgs{
DbType: pulumi.String("MySQL"),
DbVersion: pulumi.String("8.0"),
DbNodeClass: pulumi.String(_default.Classes[0].SupportedEngines[0].AvailableResources[0].DbNodeClass),
PayType: pulumi.String("PostPaid"),
VswitchId: defaultSwitch.ID(),
Description: pulumi.String("terraform-example"),
})
if err != nil {
return err
}
defaultAccount, err := polardb.NewAccount(ctx, "default", &polardb.AccountArgs{
DbClusterId: defaultCluster.ID(),
AccountName: pulumi.String("terraform_example"),
AccountPassword: pulumi.String("Example1234"),
AccountDescription: pulumi.String("terraform-example"),
})
if err != nil {
return err
}
defaultDatabase, err := polardb.NewDatabase(ctx, "default", &polardb.DatabaseArgs{
DbClusterId: defaultCluster.ID(),
DbName: pulumi.String("terraform-example"),
})
if err != nil {
return err
}
_, err = polardb.NewAccountPrivilege(ctx, "default", &polardb.AccountPrivilegeArgs{
DbClusterId: defaultCluster.ID(),
AccountName: defaultAccount.AccountName,
AccountPrivilege: pulumi.String("ReadOnly"),
DbNames: pulumi.StringArray{
defaultDatabase.DbName,
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var @default = AliCloud.PolarDB.GetNodeClasses.Invoke(new()
{
DbType = "MySQL",
DbVersion = "8.0",
PayType = "PostPaid",
Category = "Normal",
});
var defaultNetwork = new AliCloud.Vpc.Network("default", new()
{
VpcName = "terraform-example",
CidrBlock = "172.16.0.0/16",
});
var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
{
VpcId = defaultNetwork.Id,
CidrBlock = "172.16.0.0/24",
ZoneId = @default.Apply(@default => @default.Apply(getNodeClassesResult => getNodeClassesResult.Classes[0]?.ZoneId)),
VswitchName = "terraform-example",
});
var defaultCluster = new AliCloud.PolarDB.Cluster("default", new()
{
DbType = "MySQL",
DbVersion = "8.0",
DbNodeClass = @default.Apply(@default => @default.Apply(getNodeClassesResult => getNodeClassesResult.Classes[0]?.SupportedEngines[0]?.AvailableResources[0]?.DbNodeClass)),
PayType = "PostPaid",
VswitchId = defaultSwitch.Id,
Description = "terraform-example",
});
var defaultAccount = new AliCloud.PolarDB.Account("default", new()
{
DbClusterId = defaultCluster.Id,
AccountName = "terraform_example",
AccountPassword = "Example1234",
AccountDescription = "terraform-example",
});
var defaultDatabase = new AliCloud.PolarDB.Database("default", new()
{
DbClusterId = defaultCluster.Id,
DbName = "terraform-example",
});
var defaultAccountPrivilege = new AliCloud.PolarDB.AccountPrivilege("default", new()
{
DbClusterId = defaultCluster.Id,
AccountName = defaultAccount.AccountName,
Privilege = "ReadOnly",
DbNames = new[]
{
defaultDatabase.DbName,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.polardb.PolardbFunctions;
import com.pulumi.alicloud.polardb.inputs.GetNodeClassesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.polardb.Cluster;
import com.pulumi.alicloud.polardb.ClusterArgs;
import com.pulumi.alicloud.polardb.Account;
import com.pulumi.alicloud.polardb.AccountArgs;
import com.pulumi.alicloud.polardb.Database;
import com.pulumi.alicloud.polardb.DatabaseArgs;
import com.pulumi.alicloud.polardb.AccountPrivilege;
import com.pulumi.alicloud.polardb.AccountPrivilegeArgs;
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) {
final var default = PolardbFunctions.getNodeClasses(GetNodeClassesArgs.builder()
.dbType("MySQL")
.dbVersion("8.0")
.payType("PostPaid")
.category("Normal")
.build());
var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
.vpcName("terraform-example")
.cidrBlock("172.16.0.0/16")
.build());
var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
.vpcId(defaultNetwork.id())
.cidrBlock("172.16.0.0/24")
.zoneId(default_.classes()[0].zoneId())
.vswitchName("terraform-example")
.build());
var defaultCluster = new Cluster("defaultCluster", ClusterArgs.builder()
.dbType("MySQL")
.dbVersion("8.0")
.dbNodeClass(default_.classes()[0].supportedEngines()[0].availableResources()[0].dbNodeClass())
.payType("PostPaid")
.vswitchId(defaultSwitch.id())
.description("terraform-example")
.build());
var defaultAccount = new Account("defaultAccount", AccountArgs.builder()
.dbClusterId(defaultCluster.id())
.accountName("terraform_example")
.accountPassword("Example1234")
.accountDescription("terraform-example")
.build());
var defaultDatabase = new Database("defaultDatabase", DatabaseArgs.builder()
.dbClusterId(defaultCluster.id())
.dbName("terraform-example")
.build());
var defaultAccountPrivilege = new AccountPrivilege("defaultAccountPrivilege", AccountPrivilegeArgs.builder()
.dbClusterId(defaultCluster.id())
.accountName(defaultAccount.accountName())
.accountPrivilege("ReadOnly")
.dbNames(defaultDatabase.dbName())
.build());
}
}
resources:
defaultNetwork:
type: alicloud:vpc:Network
name: default
properties:
vpcName: terraform-example
cidrBlock: 172.16.0.0/16
defaultSwitch:
type: alicloud:vpc:Switch
name: default
properties:
vpcId: ${defaultNetwork.id}
cidrBlock: 172.16.0.0/24
zoneId: ${default.classes[0].zoneId}
vswitchName: terraform-example
defaultCluster:
type: alicloud:polardb:Cluster
name: default
properties:
dbType: MySQL
dbVersion: '8.0'
dbNodeClass: ${default.classes[0].supportedEngines[0].availableResources[0].dbNodeClass}
payType: PostPaid
vswitchId: ${defaultSwitch.id}
description: terraform-example
defaultAccount:
type: alicloud:polardb:Account
name: default
properties:
dbClusterId: ${defaultCluster.id}
accountName: terraform_example
accountPassword: Example1234
accountDescription: terraform-example
defaultDatabase:
type: alicloud:polardb:Database
name: default
properties:
dbClusterId: ${defaultCluster.id}
dbName: terraform-example
defaultAccountPrivilege:
type: alicloud:polardb:AccountPrivilege
name: default
properties:
dbClusterId: ${defaultCluster.id}
accountName: ${defaultAccount.accountName}
accountPrivilege: ReadOnly
dbNames:
- ${defaultDatabase.dbName}
variables:
default:
fn::invoke:
Function: alicloud:polardb:getNodeClasses
Arguments:
dbType: MySQL
dbVersion: '8.0'
payType: PostPaid
category: Normal
Create AccountPrivilege Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AccountPrivilege(name: string, args: AccountPrivilegeArgs, opts?: CustomResourceOptions);
@overload
def AccountPrivilege(resource_name: str,
args: AccountPrivilegeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AccountPrivilege(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
db_cluster_id: Optional[str] = None,
db_names: Optional[Sequence[str]] = None,
account_privilege: Optional[str] = None)
func NewAccountPrivilege(ctx *Context, name string, args AccountPrivilegeArgs, opts ...ResourceOption) (*AccountPrivilege, error)
public AccountPrivilege(string name, AccountPrivilegeArgs args, CustomResourceOptions? opts = null)
public AccountPrivilege(String name, AccountPrivilegeArgs args)
public AccountPrivilege(String name, AccountPrivilegeArgs args, CustomResourceOptions options)
type: alicloud:polardb:AccountPrivilege
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 AccountPrivilegeArgs
- 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 AccountPrivilegeArgs
- 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 AccountPrivilegeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AccountPrivilegeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AccountPrivilegeArgs
- 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 accountPrivilegeResource = new AliCloud.PolarDB.AccountPrivilege("accountPrivilegeResource", new()
{
AccountName = "string",
DbClusterId = "string",
DbNames = new[]
{
"string",
},
Privilege = "string",
});
example, err := polardb.NewAccountPrivilege(ctx, "accountPrivilegeResource", &polardb.AccountPrivilegeArgs{
AccountName: pulumi.String("string"),
DbClusterId: pulumi.String("string"),
DbNames: pulumi.StringArray{
pulumi.String("string"),
},
AccountPrivilege: pulumi.String("string"),
})
var accountPrivilegeResource = new AccountPrivilege("accountPrivilegeResource", AccountPrivilegeArgs.builder()
.accountName("string")
.dbClusterId("string")
.dbNames("string")
.accountPrivilege("string")
.build());
account_privilege_resource = alicloud.polardb.AccountPrivilege("accountPrivilegeResource",
account_name="string",
db_cluster_id="string",
db_names=["string"],
account_privilege="string")
const accountPrivilegeResource = new alicloud.polardb.AccountPrivilege("accountPrivilegeResource", {
accountName: "string",
dbClusterId: "string",
dbNames: ["string"],
accountPrivilege: "string",
});
type: alicloud:polardb:AccountPrivilege
properties:
accountName: string
accountPrivilege: string
dbClusterId: string
dbNames:
- string
AccountPrivilege 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 AccountPrivilege resource accepts the following input properties:
- Account
Name string - A specified account name.
- Db
Cluster stringId - The Id of cluster in which account belongs.
- Db
Names List<string> - List of specified database name.
- Privilege string
- The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- Account
Name string - A specified account name.
- Db
Cluster stringId - The Id of cluster in which account belongs.
- Db
Names []string - List of specified database name.
- Account
Privilege string - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- account
Name String - A specified account name.
- db
Cluster StringId - The Id of cluster in which account belongs.
- db
Names List<String> - List of specified database name.
- account
Privilege String - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- account
Name string - A specified account name.
- db
Cluster stringId - The Id of cluster in which account belongs.
- db
Names string[] - List of specified database name.
- account
Privilege string - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- account_
name str - A specified account name.
- db_
cluster_ strid - The Id of cluster in which account belongs.
- db_
names Sequence[str] - List of specified database name.
- account_
privilege str - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- account
Name String - A specified account name.
- db
Cluster StringId - The Id of cluster in which account belongs.
- db
Names List<String> - List of specified database name.
- account
Privilege String - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
Outputs
All input properties are implicitly available as output properties. Additionally, the AccountPrivilege resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AccountPrivilege Resource
Get an existing AccountPrivilege 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?: AccountPrivilegeState, opts?: CustomResourceOptions): AccountPrivilege
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
account_privilege: Optional[str] = None,
db_cluster_id: Optional[str] = None,
db_names: Optional[Sequence[str]] = None) -> AccountPrivilege
func GetAccountPrivilege(ctx *Context, name string, id IDInput, state *AccountPrivilegeState, opts ...ResourceOption) (*AccountPrivilege, error)
public static AccountPrivilege Get(string name, Input<string> id, AccountPrivilegeState? state, CustomResourceOptions? opts = null)
public static AccountPrivilege get(String name, Output<String> id, AccountPrivilegeState 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
Name string - A specified account name.
- Db
Cluster stringId - The Id of cluster in which account belongs.
- Db
Names List<string> - List of specified database name.
- Privilege string
- The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- Account
Name string - A specified account name.
- Account
Privilege string - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- Db
Cluster stringId - The Id of cluster in which account belongs.
- Db
Names []string - List of specified database name.
- account
Name String - A specified account name.
- account
Privilege String - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- db
Cluster StringId - The Id of cluster in which account belongs.
- db
Names List<String> - List of specified database name.
- account
Name string - A specified account name.
- account
Privilege string - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- db
Cluster stringId - The Id of cluster in which account belongs.
- db
Names string[] - List of specified database name.
- account_
name str - A specified account name.
- account_
privilege str - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- db_
cluster_ strid - The Id of cluster in which account belongs.
- db_
names Sequence[str] - List of specified database name.
- account
Name String - A specified account name.
- account
Privilege String - The privilege of one account access database. Valid values: ["ReadOnly", "ReadWrite"], ["DMLOnly", "DDLOnly"] added since version v1.101.0. Default to "ReadOnly".
- db
Cluster StringId - The Id of cluster in which account belongs.
- db
Names List<String> - List of specified database name.
Import
PolarDB account privilege can be imported using the id, e.g.
$ pulumi import alicloud:polardb/accountPrivilege:AccountPrivilege example "pc-12345:tf_account:ReadOnly"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.