8 references to _options
Aspire.Hosting.Azure (8)
Provisioning\Internal\DefaultProvisioningContextProvider.cs (8)
31
var subscriptionId =
_options
.SubscriptionId ?? throw new MissingConfigurationException("An Azure subscription id is required. Set the Azure:SubscriptionId configuration value.");
49
if (string.IsNullOrEmpty(
_options
.Location))
57
if (string.IsNullOrEmpty(
_options
.ResourceGroup))
63
if (!string.IsNullOrWhiteSpace(
_options
.ResourceGroupPrefix))
65
prefix =
_options
.ResourceGroupPrefix;
87
resourceGroupName =
_options
.ResourceGroup;
88
createIfAbsent =
_options
.AllowResourceGroupCreation ?? false;
95
var location = new AzureLocation(
_options
.Location);