ancient-eve-13947
07/14/2021, 7:04 PMlet suffix= pulumi.getStack();
suffix= suffix=="production" ? "" : suffix;
const displayName= pulumi.interpolate `DEON - ${suffix}`;
const resourceName= pulumi.interpolate `deon${suffix}directory`;
const tenant= new azure.azureactivedirectory.B2CTenant("b2c", {
resourceGroupName: resourceGroup.name,
location: "europe", // because B2C has other, fewer possible locations
sku: {
name: "Standard",
tier: "A0"
},
properties: {
countryCode: "DE",
displayName
},
resourceName
});
and on pulumi up
I get this error:
b2c (azure-native:azureactivedirectory:B2CTenant)
error: autorest/azure: Service returned an error. Status=404 Code="NotFound" Message="Resource with ID '25110286-d288-4e46-851b-4e2bc880672f/rgdev9a38f1a5/deondevdirectory' does not exist." Target="resource"
what am I doing wrong?tall-librarian-49374
07/15/2021, 9:59 AMresourceName
should be a valid domain name? Our example shows
ResourceName = "<http://contoso.onmicrosoft.com|contoso.onmicrosoft.com>",
and the doc says
ResourceName string The initial domain name of the B2C tenant.
ancient-eve-13947
07/15/2021, 10:12 AMtall-librarian-49374
07/15/2021, 10:19 AMhow do I upgrade my account from personal to Team?I have no idea. Either contact support or ask in #general?