@volcengine/pulumi
Version:
A Pulumi package for creating and managing volcengine cloud resources.
146 lines • 4.92 kB
JavaScript
"use strict";
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getAccountsOutput = exports.getAccounts = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Use this data source to query detailed information of vedb mysql accounts
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
* import * as volcengine from "@volcengine/pulumi";
*
* const fooZones = volcengine.ecs.getZones({});
* const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
* vpcName: "acc-test-vpc",
* cidrBlock: "172.16.0.0/16",
* });
* const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
* subnetName: "acc-test-subnet",
* cidrBlock: "172.16.0.0/24",
* zoneId: fooZones.then(fooZones => fooZones.zones?.[2]?.id),
* vpcId: fooVpc.id,
* });
* const fooInstance = new volcengine.vedb_mysql.Instance("fooInstance", {
* chargeType: "PostPaid",
* storageChargeType: "PostPaid",
* dbEngineVersion: "MySQL_8_0",
* dbMinorVersion: "3.0",
* nodeNumber: 2,
* nodeSpec: "vedb.mysql.x4.large",
* subnetId: fooSubnet.id,
* instanceName: "tf-test",
* projectName: "testA",
* tags: [
* {
* key: "tftest",
* value: "tftest",
* },
* {
* key: "tftest2",
* value: "tftest2",
* },
* ],
* });
* const fooDatabase = new volcengine.vedb_mysql.Database("fooDatabase", {
* dbName: "tf-table",
* instanceId: fooInstance.id,
* });
* const fooAccount = new volcengine.vedb_mysql.Account("fooAccount", {
* accountName: "tftest",
* accountPassword: "93f0cb0614Aab12",
* accountType: "Normal",
* instanceId: fooInstance.id,
* accountPrivileges: [{
* dbName: fooDatabase.dbName,
* accountPrivilege: "Custom",
* accountPrivilegeDetail: "SELECT,INSERT,DELETE",
* }],
* });
* const fooAccounts = volcengine.vedb_mysql.getAccountsOutput({
* accountName: fooAccount.accountName,
* instanceId: fooInstance.id,
* });
* ```
*/
function getAccounts(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("volcengine:vedb_mysql/getAccounts:getAccounts", {
"accountName": args.accountName,
"instanceId": args.instanceId,
"nameRegex": args.nameRegex,
"outputFile": args.outputFile,
}, opts);
}
exports.getAccounts = getAccounts;
/**
* Use this data source to query detailed information of vedb mysql accounts
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as volcengine from "@pulumi/volcengine";
* import * as volcengine from "@volcengine/pulumi";
*
* const fooZones = volcengine.ecs.getZones({});
* const fooVpc = new volcengine.vpc.Vpc("fooVpc", {
* vpcName: "acc-test-vpc",
* cidrBlock: "172.16.0.0/16",
* });
* const fooSubnet = new volcengine.vpc.Subnet("fooSubnet", {
* subnetName: "acc-test-subnet",
* cidrBlock: "172.16.0.0/24",
* zoneId: fooZones.then(fooZones => fooZones.zones?.[2]?.id),
* vpcId: fooVpc.id,
* });
* const fooInstance = new volcengine.vedb_mysql.Instance("fooInstance", {
* chargeType: "PostPaid",
* storageChargeType: "PostPaid",
* dbEngineVersion: "MySQL_8_0",
* dbMinorVersion: "3.0",
* nodeNumber: 2,
* nodeSpec: "vedb.mysql.x4.large",
* subnetId: fooSubnet.id,
* instanceName: "tf-test",
* projectName: "testA",
* tags: [
* {
* key: "tftest",
* value: "tftest",
* },
* {
* key: "tftest2",
* value: "tftest2",
* },
* ],
* });
* const fooDatabase = new volcengine.vedb_mysql.Database("fooDatabase", {
* dbName: "tf-table",
* instanceId: fooInstance.id,
* });
* const fooAccount = new volcengine.vedb_mysql.Account("fooAccount", {
* accountName: "tftest",
* accountPassword: "93f0cb0614Aab12",
* accountType: "Normal",
* instanceId: fooInstance.id,
* accountPrivileges: [{
* dbName: fooDatabase.dbName,
* accountPrivilege: "Custom",
* accountPrivilegeDetail: "SELECT,INSERT,DELETE",
* }],
* });
* const fooAccounts = volcengine.vedb_mysql.getAccountsOutput({
* accountName: fooAccount.accountName,
* instanceId: fooInstance.id,
* });
* ```
*/
function getAccountsOutput(args, opts) {
return pulumi.output(args).apply((a) => getAccounts(a, opts));
}
exports.getAccountsOutput = getAccountsOutput;
//# sourceMappingURL=getAccounts.js.map