mirror of https://github.com/pulumi/pulumi.git
16 lines
528 B
Python
16 lines
528 B
Python
import pulumi
|
|
import pulumi_azure_native as azure_native
|
|
|
|
storage_accounts = azure_native.storage.StorageAccount("storageAccounts",
|
|
account_name="sto4445",
|
|
kind=azure_native.storage.Kind.BLOCK_BLOB_STORAGE,
|
|
location="eastus",
|
|
resource_group_name="res9101",
|
|
sku=azure_native.storage.SkuArgs(
|
|
name=azure_native.storage.SkuName.PREMIUM_LRS,
|
|
),
|
|
network_rule_set=azure_native.storage.NetworkRuleSetArgs(
|
|
default_action=azure_native.storage.DefaultAction.ALLOW,
|
|
ip_rules=[],
|
|
))
|