Hey all - <https://www.pulumi.com/registry/package...
# python
b
Hey all - https://www.pulumi.com/registry/packages/azure-native/api-docs/network/subnet/ - I'm not certain as very new to it all, but the delegation example seems exactly the same as the base example?
Copy code
EXSubnet = azure_native.network.Subnet(
    "EXSubnet",
    resource_group_name=RGNet.name,
    virtual_network_name=virtual_network.name,
    subnet_name="ExSubnet",
    address_prefixes=["172.168.24.110/27"]
    delegations=[{
        name="SQLDelegation",
        serviceName="Microsoft.Sql/managedInstances",
    }],
)
Above is what I'm trying to create but I'm receiving;
Copy code
error: Status=409 Code="MiCreateFailedNonDelegatedSubnet"
Still when trying to deploy a SQL Managed Instance inside of Azure with this subnet tagged? Thanks for any pointers Maybe close the address_prefixes line lol
🙌 1