Hi Everyone I am new to Pulumi. I am trying to cre...
# getting-started
c
Hi Everyone I am new to Pulumi. I am trying to create my first resource in Azure but Pulumi is adding a suffix after the chosen name. This is my code:
Copy code
from pulumi_azure_native import resources

def create_resource_group(resource_name: str, location: str):
    resource_group = resources.ResourceGroup(
        resource_name,
        location=location
    )
    return resource_group
b
first result from google 🙂 specifically https://www.pulumi.com/docs/iac/concepts/resources/names/#autonaming
c
Thanks @billowy-army-68599