https://pulumi.com logo
#azure
Title
# azure
b

busy-house-95123

08/18/2021, 9:16 AM
hey 👋 anyone having issues with Azure Database for Postgresql method call:
Copy code
database = azure_native.dbforpostgresql.Database(
    "test-database",
    server_name = "my-test-database",
    charset="UTF8",
    collation="English_United States.1252",
    database_name="test_database",
    resource_group_name=example_resource_group.name,
)
returns
Copy code
Code="ResourceNotFound" Message="The Resource 'Microsoft.DBforPostgreSQL/servers/my-test-database' under resource group 'exampleresourcegroupda3e1ab3' was not found. For more details please go to <https://aka.ms/ARMResourceNotFoundFix>"
The resource group name is correct, so is the subscription id, tenant id, etc.
t

tall-librarian-49374

08/18/2021, 9:18 AM
Does the server with this name exist?
b

busy-house-95123

08/18/2021, 10:23 AM
missed it, thanks for pointing it out 🙂
3 Views