Skip to content

Commit 1b627b7

Browse files
[release/8.0-preview5] Upgrade to new version of Azure.Provisioning (#3271) (#3325)
* Upgrade to new version of Azure.Provisioning (#3271) * Upgrade to new version of Azure.Provisioning * Fix tests * regen * update test * Remove the azure specific nuget feed --------- Co-authored-by: JoshLove-msft <[email protected]>
1 parent 4229054 commit 1b627b7

17 files changed

+207
-210
lines changed

Directory.Packages.props

+1-5
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@
3333
<PackageVersion Include="Microsoft.Azure.SignalR" Version="1.25.1" />
3434
<PackageVersion Include="Microsoft.Extensions.Azure" Version="1.7.2" />
3535
<!-- Azure Management SDK for .NET dependencies -->
36-
<PackageVersion Include="Azure.ResourceManager" Version="1.11.0-alpha.20240222.6" />
37-
<PackageVersion Include="Azure.ResourceManager.Authorization" Version="1.2.0-alpha.20240309.1" />
38-
<PackageVersion Include="Azure.ResourceManager.KeyVault" Version="1.3.0-alpha.20240310.2" />
39-
<PackageVersion Include="Azure.ResourceManager.Resources" Version="1.8.0-alpha.20240309.1" />
40-
<PackageVersion Include="Azure.Provisioning" Version="1.0.0-alpha.20240315.2" />
36+
<PackageVersion Include="Azure.Provisioning" Version="0.1.0-beta.2" />
4137
<!-- ASP.NET Core dependencies -->
4238
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Certificate" Version="$(MicrosoftAspNetCoreAuthenticationCertificatePackageVersion)" />
4339
<PackageVersion Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="$(MicrosoftAspNetCoreAuthenticationOpenIdConnectPackageVersion)" />

NuGet.config

-6
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,11 @@
1919
<add key="dotnet-libraries" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
2020
<add key="orleans-nightly" value="https://orleans.pkgs.visualstudio.com/orleans-public/_packaging/orleans-nightly/nuget/v3/index.json" />
2121
<add key="dotnet9-transport" value="https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet9-transport/nuget/v3/index.json" />
22-
<add key="azure-sdk-for-net-dev" value="https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json" />
2322
</packageSources>
2423
<packageSourceMapping>
2524
<packageSource key="dotnet9-transport">
2625
<package pattern="*WorkloadBuildTasks*" />
2726
</packageSource>
28-
<packageSource key="azure-sdk-for-net-dev">
29-
<package pattern="Azure.Provisioning" />
30-
<package pattern="Azure.ResourceManager" />
31-
<package pattern="Azure.ResourceManager.*" />
32-
</packageSource>
3327
<packageSource key="dotnet-public">
3428
<package pattern="*" />
3529
</packageSource>

playground/bicep/BicepSample.AppHost/ai.module.bicep

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ param kind string = 'web'
1313
param logAnalyticsWorkspaceId string
1414

1515

16-
resource applicationInsightsComponent_qG5w9sTHc 'Microsoft.Insights/components@2020-02-02' = {
17-
name: toLower(take(concat('ai', uniqueString(resourceGroup().id)), 24))
16+
resource applicationInsightsComponent_rCL0xfJOP 'Microsoft.Insights/components@2020-02-02' = {
17+
name: toLower(take('ai${uniqueString(resourceGroup().id)}', 24))
1818
location: location
1919
tags: {
2020
'aspire-resource-name': 'ai'
@@ -26,4 +26,4 @@ resource applicationInsightsComponent_qG5w9sTHc 'Microsoft.Insights/components@2
2626
}
2727
}
2828

29-
output appInsightsConnectionString string = applicationInsightsComponent_qG5w9sTHc.properties.ConnectionString
29+
output appInsightsConnectionString string = applicationInsightsComponent_rCL0xfJOP.properties.ConnectionString

playground/bicep/BicepSample.AppHost/aiwithoutlaw.module.bicep

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ param kind string = 'web'
1313
param logAnalyticsWorkspaceId string
1414

1515

16-
resource applicationInsightsComponent_YlZN71uia 'Microsoft.Insights/components@2020-02-02' = {
17-
name: toLower(take(concat('aiwithoutlaw', uniqueString(resourceGroup().id)), 24))
16+
resource applicationInsightsComponent_ojV7HcBs3 'Microsoft.Insights/components@2020-02-02' = {
17+
name: toLower(take('aiwithoutlaw${uniqueString(resourceGroup().id)}', 24))
1818
location: location
1919
tags: {
2020
'aspire-resource-name': 'aiwithoutlaw'
@@ -26,4 +26,4 @@ resource applicationInsightsComponent_YlZN71uia 'Microsoft.Insights/components@2
2626
}
2727
}
2828

29-
output appInsightsConnectionString string = applicationInsightsComponent_YlZN71uia.properties.ConnectionString
29+
output appInsightsConnectionString string = applicationInsightsComponent_ojV7HcBs3.properties.ConnectionString

playground/bicep/BicepSample.AppHost/appConfig.module.bicep

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ param principalType string
1313
param sku string
1414

1515

16-
resource appConfigurationStore_j2IqAZkBh 'Microsoft.AppConfiguration/configurationStores@2023-03-01' = {
17-
name: toLower(take(concat('appConfig', uniqueString(resourceGroup().id)), 24))
16+
resource appConfigurationStore_xM7mBhesj 'Microsoft.AppConfiguration/configurationStores@2023-03-01' = {
17+
name: toLower(take('appConfig${uniqueString(resourceGroup().id)}', 24))
1818
location: location
1919
tags: {
2020
'aspire-resource-name': 'appConfig'
@@ -26,14 +26,14 @@ resource appConfigurationStore_j2IqAZkBh 'Microsoft.AppConfiguration/configurati
2626
}
2727
}
2828

29-
resource roleAssignment_umUNaNdeG 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
30-
scope: appConfigurationStore_j2IqAZkBh
31-
name: guid(appConfigurationStore_j2IqAZkBh.id, principalId, subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b'))
29+
resource roleAssignment_3uatMWw7h 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
30+
scope: appConfigurationStore_xM7mBhesj
31+
name: guid(appConfigurationStore_xM7mBhesj.id, principalId, subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b'))
3232
properties: {
3333
roleDefinitionId: subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '5ae67dd6-50cb-40e7-96ff-dc2bfa4b606b')
3434
principalId: principalId
3535
principalType: principalType
3636
}
3737
}
3838

39-
output appConfigEndpoint string = appConfigurationStore_j2IqAZkBh.properties.endpoint
39+
output appConfigEndpoint string = appConfigurationStore_xM7mBhesj.properties.endpoint

playground/bicep/BicepSample.AppHost/cosmos.module.bicep

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ resource keyVault_IeF8jZvXV 'Microsoft.KeyVault/vaults@2022-07-01' existing = {
1111
name: keyVaultName
1212
}
1313

14-
resource cosmosDBAccount_5pKmb8KAZ 'Microsoft.DocumentDB/databaseAccounts@2023-04-15' = {
15-
name: toLower(take(concat('cosmos', uniqueString(resourceGroup().id)), 24))
14+
resource cosmosDBAccount_MZyw35gqp 'Microsoft.DocumentDB/databaseAccounts@2023-04-15' = {
15+
name: toLower(take('cosmos${uniqueString(resourceGroup().id)}', 24))
1616
location: location
1717
tags: {
1818
'aspire-resource-name': 'cosmos'
@@ -32,8 +32,8 @@ resource cosmosDBAccount_5pKmb8KAZ 'Microsoft.DocumentDB/databaseAccounts@2023-0
3232
}
3333
}
3434

35-
resource cosmosDBSqlDatabase_NXWTqBS0F 'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2023-04-15' = {
36-
parent: cosmosDBAccount_5pKmb8KAZ
35+
resource cosmosDBSqlDatabase_tiaTwUqx8 'Microsoft.DocumentDB/databaseAccounts/sqlDatabases@2023-04-15' = {
36+
parent: cosmosDBAccount_MZyw35gqp
3737
name: 'db3'
3838
location: location
3939
properties: {
@@ -48,6 +48,6 @@ resource keyVaultSecret_Ddsc3HjrA 'Microsoft.KeyVault/vaults/secrets@2022-07-01'
4848
name: 'connectionString'
4949
location: location
5050
properties: {
51-
value: 'AccountEndpoint=${cosmosDBAccount_5pKmb8KAZ.properties.documentEndpoint};AccountKey=${cosmosDBAccount_5pKmb8KAZ.listkeys(cosmosDBAccount_5pKmb8KAZ.apiVersion).primaryMasterKey}'
51+
value: 'AccountEndpoint=${cosmosDBAccount_MZyw35gqp.properties.documentEndpoint};AccountKey=${cosmosDBAccount_MZyw35gqp.listkeys(cosmosDBAccount_MZyw35gqp.apiVersion).primaryMasterKey}'
5252
}
5353
}

playground/bicep/BicepSample.AppHost/kv3.module.bicep

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,30 @@ param principalId string
1010
param principalType string
1111

1212

13-
resource keyVault_kyM046oWl 'Microsoft.KeyVault/vaults@2022-07-01' = {
14-
name: toLower(take(concat('kv3', uniqueString(resourceGroup().id)), 24))
13+
resource keyVault_AlZz71Qpf 'Microsoft.KeyVault/vaults@2022-07-01' = {
14+
name: toLower(take('kv3${uniqueString(resourceGroup().id)}', 24))
1515
location: location
1616
tags: {
1717
'aspire-resource-name': 'kv3'
1818
}
1919
properties: {
2020
tenantId: tenant().tenantId
2121
sku: {
22-
name: 'standard'
2322
family: 'A'
23+
name: 'standard'
2424
}
2525
enableRbacAuthorization: true
2626
}
2727
}
2828

29-
resource roleAssignment_oarYloVnD 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
30-
scope: keyVault_kyM046oWl
31-
name: guid(keyVault_kyM046oWl.id, principalId, subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '00482a5a-887f-4fb3-b363-3b7fe8e74483'))
29+
resource roleAssignment_B2rItKEaQ 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
30+
scope: keyVault_AlZz71Qpf
31+
name: guid(keyVault_AlZz71Qpf.id, principalId, subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '00482a5a-887f-4fb3-b363-3b7fe8e74483'))
3232
properties: {
3333
roleDefinitionId: subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '00482a5a-887f-4fb3-b363-3b7fe8e74483')
3434
principalId: principalId
3535
principalType: principalType
3636
}
3737
}
3838

39-
output vaultUri string = keyVault_kyM046oWl.properties.vaultUri
39+
output vaultUri string = keyVault_AlZz71Qpf.properties.vaultUri

playground/bicep/BicepSample.AppHost/lawkspc.module.bicep

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ targetScope = 'resourceGroup'
44
param location string = resourceGroup().location
55

66

7-
resource operationalInsightsWorkspace_cxL77xv9Y 'Microsoft.OperationalInsights/workspaces@2022-10-01' = {
8-
name: toLower(take(concat('lawkspc', uniqueString(resourceGroup().id)), 24))
7+
resource operationalInsightsWorkspace_FFogvqZja 'Microsoft.OperationalInsights/workspaces@2022-10-01' = {
8+
name: toLower(take('lawkspc${uniqueString(resourceGroup().id)}', 24))
99
location: location
1010
tags: {
1111
'aspire-resource-name': 'lawkspc'
@@ -17,4 +17,4 @@ resource operationalInsightsWorkspace_cxL77xv9Y 'Microsoft.OperationalInsights/w
1717
}
1818
}
1919

20-
output logAnalyticsWorkspaceId string = operationalInsightsWorkspace_cxL77xv9Y.id
20+
output logAnalyticsWorkspaceId string = operationalInsightsWorkspace_FFogvqZja.id

playground/bicep/BicepSample.AppHost/postgres2.module.bicep

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ resource keyVault_IeF8jZvXV 'Microsoft.KeyVault/vaults@2022-07-01' existing = {
1818
name: keyVaultName
1919
}
2020

21-
resource postgreSqlFlexibleServer_OPAkFpSgz 'Microsoft.DBforPostgreSQL/flexibleServers@2023-03-01-preview' = {
22-
name: toLower(take(concat('postgres2', uniqueString(resourceGroup().id)), 24))
21+
resource postgreSqlFlexibleServer_R66wZLcrB 'Microsoft.DBforPostgreSQL/flexibleServers@2023-03-01-preview' = {
22+
name: toLower(take('postgres2${uniqueString(resourceGroup().id)}', 24))
2323
location: location
2424
tags: {
2525
'aspire-resource-name': 'postgres2'
@@ -46,17 +46,17 @@ resource postgreSqlFlexibleServer_OPAkFpSgz 'Microsoft.DBforPostgreSQL/flexibleS
4646
}
4747
}
4848

49-
resource postgreSqlFirewallRule_mqsWfilIZ 'Microsoft.DBforPostgreSQL/flexibleServers/firewallRules@2023-03-01-preview' = {
50-
parent: postgreSqlFlexibleServer_OPAkFpSgz
49+
resource postgreSqlFirewallRule_TAPXfjXFL 'Microsoft.DBforPostgreSQL/flexibleServers/firewallRules@2023-03-01-preview' = {
50+
parent: postgreSqlFlexibleServer_R66wZLcrB
5151
name: 'AllowAllAzureIps'
5252
properties: {
5353
startIpAddress: '0.0.0.0'
5454
endIpAddress: '0.0.0.0'
5555
}
5656
}
5757

58-
resource postgreSqlFlexibleServerDatabase_UjecJzvqQ 'Microsoft.DBforPostgreSQL/flexibleServers/databases@2023-03-01-preview' = {
59-
parent: postgreSqlFlexibleServer_OPAkFpSgz
58+
resource postgreSqlFlexibleServerDatabase_QYMh86Ekp 'Microsoft.DBforPostgreSQL/flexibleServers/databases@2023-03-01-preview' = {
59+
parent: postgreSqlFlexibleServer_R66wZLcrB
6060
name: 'db2'
6161
properties: {
6262
}
@@ -67,6 +67,6 @@ resource keyVaultSecret_Ddsc3HjrA 'Microsoft.KeyVault/vaults/secrets@2022-07-01'
6767
name: 'connectionString'
6868
location: location
6969
properties: {
70-
value: 'Host=${postgreSqlFlexibleServer_OPAkFpSgz.properties.fullyQualifiedDomainName};Username=${administratorLogin};Password=${administratorLoginPassword}'
70+
value: 'Host=${postgreSqlFlexibleServer_R66wZLcrB.properties.fullyQualifiedDomainName};Username=${administratorLogin};Password=${administratorLoginPassword}'
7171
}
7272
}

playground/bicep/BicepSample.AppHost/redis.module.bicep

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ resource keyVault_IeF8jZvXV 'Microsoft.KeyVault/vaults@2022-07-01' existing = {
1111
name: keyVaultName
1212
}
1313

14-
resource redisCache_N8pcNBLX8 'Microsoft.Cache/Redis@2020-06-01' = {
15-
name: toLower(take(concat('redis', uniqueString(resourceGroup().id)), 24))
14+
resource redisCache_bsDXQBNdq 'Microsoft.Cache/Redis@2020-06-01' = {
15+
name: toLower(take('redis${uniqueString(resourceGroup().id)}', 24))
1616
location: location
1717
tags: {
1818
'aspire-resource-name': 'redis'
@@ -33,6 +33,6 @@ resource keyVaultSecret_Ddsc3HjrA 'Microsoft.KeyVault/vaults/secrets@2022-07-01'
3333
name: 'connectionString'
3434
location: location
3535
properties: {
36-
value: '${redisCache_N8pcNBLX8.properties.hostName},ssl=true,password=${redisCache_N8pcNBLX8.listKeys(redisCache_N8pcNBLX8.apiVersion).primaryKey}'
36+
value: '${redisCache_bsDXQBNdq.properties.hostName},ssl=true,password=${redisCache_bsDXQBNdq.listKeys(redisCache_bsDXQBNdq.apiVersion).primaryKey}'
3737
}
3838
}

playground/bicep/BicepSample.AppHost/sb.module.bicep

+18-19
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ param principalId string
1313
param principalType string
1414

1515

16-
resource serviceBusNamespace_RuSlLOK64 'Microsoft.ServiceBus/namespaces@2022-10-01-preview' = {
17-
name: toLower(take(concat('sb', uniqueString(resourceGroup().id)), 24))
16+
resource serviceBusNamespace_1RzZvI0LZ 'Microsoft.ServiceBus/namespaces@2021-11-01' = {
17+
name: toLower(take('sb${uniqueString(resourceGroup().id)}', 24))
1818
location: location
1919
tags: {
2020
'aspire-resource-name': 'sb'
@@ -23,66 +23,65 @@ resource serviceBusNamespace_RuSlLOK64 'Microsoft.ServiceBus/namespaces@2022-10-
2323
name: sku
2424
}
2525
properties: {
26-
minimumTlsVersion: '1.2'
2726
}
2827
}
2928

30-
resource roleAssignment_IS9HJzhT8 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
31-
scope: serviceBusNamespace_RuSlLOK64
32-
name: guid(serviceBusNamespace_RuSlLOK64.id, principalId, subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '090c5cfd-751d-490a-894a-3ce6f1109419'))
29+
resource roleAssignment_GAWCqJpjI 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
30+
scope: serviceBusNamespace_1RzZvI0LZ
31+
name: guid(serviceBusNamespace_1RzZvI0LZ.id, principalId, subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '090c5cfd-751d-490a-894a-3ce6f1109419'))
3332
properties: {
3433
roleDefinitionId: subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '090c5cfd-751d-490a-894a-3ce6f1109419')
3534
principalId: principalId
3635
principalType: principalType
3736
}
3837
}
3938

40-
resource serviceBusQueue_XlB4dhrJO 'Microsoft.ServiceBus/namespaces/queues@2022-10-01-preview' = {
41-
parent: serviceBusNamespace_RuSlLOK64
39+
resource serviceBusQueue_kQwbucWhl 'Microsoft.ServiceBus/namespaces/queues@2021-11-01' = {
40+
parent: serviceBusNamespace_1RzZvI0LZ
4241
name: 'queue1'
4342
location: location
4443
properties: {
4544
}
4645
}
4746

48-
resource serviceBusTopic_bemnWZskJ 'Microsoft.ServiceBus/namespaces/topics@2022-10-01-preview' = {
49-
parent: serviceBusNamespace_RuSlLOK64
47+
resource serviceBusTopic_768oqOlcX 'Microsoft.ServiceBus/namespaces/topics@2021-11-01' = {
48+
parent: serviceBusNamespace_1RzZvI0LZ
5049
name: 'topic1'
5150
location: location
5251
properties: {
5352
}
5453
}
5554

56-
resource serviceBusSubscription_pWgs2FLAX 'Microsoft.ServiceBus/namespaces/topics/subscriptions@2022-10-01-preview' = {
57-
parent: serviceBusTopic_bemnWZskJ
55+
resource serviceBusSubscription_IcxQHWZBG 'Microsoft.ServiceBus/namespaces/topics/subscriptions@2021-11-01' = {
56+
parent: serviceBusTopic_768oqOlcX
5857
name: 'subscription1'
5958
location: location
6059
properties: {
6160
}
6261
}
6362

64-
resource serviceBusSubscription_qojP3oFII 'Microsoft.ServiceBus/namespaces/topics/subscriptions@2022-10-01-preview' = {
65-
parent: serviceBusTopic_bemnWZskJ
63+
resource serviceBusSubscription_exANvItuE 'Microsoft.ServiceBus/namespaces/topics/subscriptions@2021-11-01' = {
64+
parent: serviceBusTopic_768oqOlcX
6665
name: 'subscription2'
6766
location: location
6867
properties: {
6968
}
7069
}
7170

72-
resource serviceBusTopic_Sh8X0ue6x 'Microsoft.ServiceBus/namespaces/topics@2022-10-01-preview' = {
73-
parent: serviceBusNamespace_RuSlLOK64
71+
resource serviceBusTopic_nemvFxmjZ 'Microsoft.ServiceBus/namespaces/topics@2021-11-01' = {
72+
parent: serviceBusNamespace_1RzZvI0LZ
7473
name: 'topic2'
7574
location: location
7675
properties: {
7776
}
7877
}
7978

80-
resource serviceBusSubscription_I0aPXc6VB 'Microsoft.ServiceBus/namespaces/topics/subscriptions@2022-10-01-preview' = {
81-
parent: serviceBusTopic_Sh8X0ue6x
79+
resource serviceBusSubscription_qiv2k0Nuu 'Microsoft.ServiceBus/namespaces/topics/subscriptions@2021-11-01' = {
80+
parent: serviceBusTopic_nemvFxmjZ
8281
name: 'subscription1'
8382
location: location
8483
properties: {
8584
}
8685
}
8786

88-
output serviceBusEndpoint string = serviceBusNamespace_RuSlLOK64.properties.serviceBusEndpoint
87+
output serviceBusEndpoint string = serviceBusNamespace_1RzZvI0LZ.properties.serviceBusEndpoint

playground/bicep/BicepSample.AppHost/signalr.module.bicep

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ param principalId string
1010
param principalType string
1111

1212

13-
resource signalRService_hoCuRhvyj 'Microsoft.SignalRService/signalR@2022-02-01' = {
14-
name: toLower(take(concat('signalr', uniqueString(resourceGroup().id)), 24))
13+
resource signalRService_iD3Yrl49T 'Microsoft.SignalRService/signalR@2022-02-01' = {
14+
name: toLower(take('signalr${uniqueString(resourceGroup().id)}', 24))
1515
location: location
1616
tags: {
1717
'aspire-resource-name': 'signalr'
@@ -36,14 +36,14 @@ resource signalRService_hoCuRhvyj 'Microsoft.SignalRService/signalR@2022-02-01'
3636
}
3737
}
3838

39-
resource roleAssignment_O1jxNBUgA 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
40-
scope: signalRService_hoCuRhvyj
41-
name: guid(signalRService_hoCuRhvyj.id, principalId, subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '420fcaa2-552c-430f-98ca-3264be4806c7'))
39+
resource roleAssignment_35voRFfVj 'Microsoft.Authorization/roleAssignments@2022-04-01' = {
40+
scope: signalRService_iD3Yrl49T
41+
name: guid(signalRService_iD3Yrl49T.id, principalId, subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '420fcaa2-552c-430f-98ca-3264be4806c7'))
4242
properties: {
4343
roleDefinitionId: subscriptionResourceId('Microsoft.Authorization/roleDefinitions', '420fcaa2-552c-430f-98ca-3264be4806c7')
4444
principalId: principalId
4545
principalType: principalType
4646
}
4747
}
4848

49-
output hostName string = signalRService_hoCuRhvyj.properties.hostName
49+
output hostName string = signalRService_iD3Yrl49T.properties.hostName

0 commit comments

Comments
 (0)