@blitzm/azure-mysql-flexible
v0.1.3
Published
@blitzm/azure-mysql-flexible is a pulumi component that simplifies the deployment of azure-mysql-flexible in azure. It support both public and private acess to the db instance
Downloads
20
Keywords
Readme
Blitzm Cloud - azure-mysql-flexible
@blitzm/azure-mysql-flexible is a pulumi component that simplifies the deployment of azure-mysql-flexible in azure. It support both public and private acess to the db instance
Installation
This package can be installed using npm
npm install --save --save-exact @blitzm/azure-mysql-flexible
Usage
import * as resources from "@pulumi/azure-native/resources";
import { AzureMySQLFlexible } from "@blitzm/azure-mysql-flexible";
const resourceGroup = new resources.ResourceGroup("blitzm-test-rg", {
resourceGroupName: "blitzm-test-rg",
});
const db = new AzureMySQLFlexible("test-my-flexible-mysql", {
resourceGroup: resourceGroup,
publicAccess: {
allowedIPs: ["<example-ip>"]
},
version: "8.0.21",
skuName: "B_Standard_B2s",
autoGrowEnabled: true,
});
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.