azure-native.sqlvirtualmachine.SqlVirtualMachineGroup
Explore with Pulumi AI
A SQL virtual machine group.
Uses Azure REST API version 2022-02-01. In version 1.x of the Azure Native provider, it used API version 2017-03-01-preview.
Other available API versions: 2023-01-01-preview, 2023-10-01.
Create SqlVirtualMachineGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SqlVirtualMachineGroup(name: string, args: SqlVirtualMachineGroupArgs, opts?: CustomResourceOptions);
@overload
def SqlVirtualMachineGroup(resource_name: str,
args: SqlVirtualMachineGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SqlVirtualMachineGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
sql_image_offer: Optional[str] = None,
sql_image_sku: Optional[Union[str, SqlVmGroupImageSku]] = None,
sql_virtual_machine_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
wsfc_domain_profile: Optional[WsfcDomainProfileArgs] = None)
func NewSqlVirtualMachineGroup(ctx *Context, name string, args SqlVirtualMachineGroupArgs, opts ...ResourceOption) (*SqlVirtualMachineGroup, error)
public SqlVirtualMachineGroup(string name, SqlVirtualMachineGroupArgs args, CustomResourceOptions? opts = null)
public SqlVirtualMachineGroup(String name, SqlVirtualMachineGroupArgs args)
public SqlVirtualMachineGroup(String name, SqlVirtualMachineGroupArgs args, CustomResourceOptions options)
type: azure-native:sqlvirtualmachine:SqlVirtualMachineGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name
This property is required. string - The unique name of the resource.
- args
This property is required. SqlVirtualMachineGroupArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. SqlVirtualMachineGroupArgs - The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. SqlVirtualMachineGroupArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. SqlVirtualMachineGroupArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. SqlVirtualMachineGroupArgs - The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sqlVirtualMachineGroupResource = new AzureNative.SqlVirtualMachine.SqlVirtualMachineGroup("sqlVirtualMachineGroupResource", new()
{
ResourceGroupName = "string",
Location = "string",
SqlImageOffer = "string",
SqlImageSku = "string",
SqlVirtualMachineGroupName = "string",
Tags =
{
{ "string", "string" },
},
WsfcDomainProfile = new AzureNative.SqlVirtualMachine.Inputs.WsfcDomainProfileArgs
{
ClusterBootstrapAccount = "string",
ClusterOperatorAccount = "string",
ClusterSubnetType = "string",
DomainFqdn = "string",
FileShareWitnessPath = "string",
OuPath = "string",
SqlServiceAccount = "string",
StorageAccountPrimaryKey = "string",
StorageAccountUrl = "string",
},
});
example, err := sqlvirtualmachine.NewSqlVirtualMachineGroup(ctx, "sqlVirtualMachineGroupResource", &sqlvirtualmachine.SqlVirtualMachineGroupArgs{
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
SqlImageOffer: pulumi.String("string"),
SqlImageSku: pulumi.String("string"),
SqlVirtualMachineGroupName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
WsfcDomainProfile: &sqlvirtualmachine.WsfcDomainProfileArgs{
ClusterBootstrapAccount: pulumi.String("string"),
ClusterOperatorAccount: pulumi.String("string"),
ClusterSubnetType: pulumi.String("string"),
DomainFqdn: pulumi.String("string"),
FileShareWitnessPath: pulumi.String("string"),
OuPath: pulumi.String("string"),
SqlServiceAccount: pulumi.String("string"),
StorageAccountPrimaryKey: pulumi.String("string"),
StorageAccountUrl: pulumi.String("string"),
},
})
var sqlVirtualMachineGroupResource = new SqlVirtualMachineGroup("sqlVirtualMachineGroupResource", SqlVirtualMachineGroupArgs.builder()
.resourceGroupName("string")
.location("string")
.sqlImageOffer("string")
.sqlImageSku("string")
.sqlVirtualMachineGroupName("string")
.tags(Map.of("string", "string"))
.wsfcDomainProfile(WsfcDomainProfileArgs.builder()
.clusterBootstrapAccount("string")
.clusterOperatorAccount("string")
.clusterSubnetType("string")
.domainFqdn("string")
.fileShareWitnessPath("string")
.ouPath("string")
.sqlServiceAccount("string")
.storageAccountPrimaryKey("string")
.storageAccountUrl("string")
.build())
.build());
sql_virtual_machine_group_resource = azure_native.sqlvirtualmachine.SqlVirtualMachineGroup("sqlVirtualMachineGroupResource",
resource_group_name="string",
location="string",
sql_image_offer="string",
sql_image_sku="string",
sql_virtual_machine_group_name="string",
tags={
"string": "string",
},
wsfc_domain_profile={
"cluster_bootstrap_account": "string",
"cluster_operator_account": "string",
"cluster_subnet_type": "string",
"domain_fqdn": "string",
"file_share_witness_path": "string",
"ou_path": "string",
"sql_service_account": "string",
"storage_account_primary_key": "string",
"storage_account_url": "string",
})
const sqlVirtualMachineGroupResource = new azure_native.sqlvirtualmachine.SqlVirtualMachineGroup("sqlVirtualMachineGroupResource", {
resourceGroupName: "string",
location: "string",
sqlImageOffer: "string",
sqlImageSku: "string",
sqlVirtualMachineGroupName: "string",
tags: {
string: "string",
},
wsfcDomainProfile: {
clusterBootstrapAccount: "string",
clusterOperatorAccount: "string",
clusterSubnetType: "string",
domainFqdn: "string",
fileShareWitnessPath: "string",
ouPath: "string",
sqlServiceAccount: "string",
storageAccountPrimaryKey: "string",
storageAccountUrl: "string",
},
});
type: azure-native:sqlvirtualmachine:SqlVirtualMachineGroup
properties:
location: string
resourceGroupName: string
sqlImageOffer: string
sqlImageSku: string
sqlVirtualMachineGroupName: string
tags:
string: string
wsfcDomainProfile:
clusterBootstrapAccount: string
clusterOperatorAccount: string
clusterSubnetType: string
domainFqdn: string
fileShareWitnessPath: string
ouPath: string
sqlServiceAccount: string
storageAccountPrimaryKey: string
storageAccountUrl: string
SqlVirtualMachineGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SqlVirtualMachineGroup resource accepts the following input properties:
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Location
Changes to this property will trigger replacement.
- Resource location.
- Sql
Image Offer Changes to this property will trigger replacement.
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- Sql
Image Sku Changes to this property will trigger replacement.
Azure Native. Sql Virtual Machine. Sql Vm Group Image Sku - SQL image sku.
- Sql
Virtual Machine Group Name Changes to this property will trigger replacement.
- Name of the SQL virtual machine group.
- Dictionary<string, string>
- Resource tags.
- Wsfc
Domain Profile Changes to this property will trigger replacement.
Azure Native. Sql Virtual Machine. Inputs. Wsfc Domain Profile - Cluster Active Directory domain profile.
- Resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- Location
Changes to this property will trigger replacement.
- Resource location.
- Sql
Image Offer Changes to this property will trigger replacement.
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- Sql
Image Sku Changes to this property will trigger replacement.
Vm Group Image Sku - SQL image sku.
- Sql
Virtual Machine Group Name Changes to this property will trigger replacement.
- Name of the SQL virtual machine group.
- map[string]string
- Resource tags.
- Wsfc
Domain Profile Changes to this property will trigger replacement.
Domain Profile Args - Cluster Active Directory domain profile.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location
Changes to this property will trigger replacement.
- Resource location.
- sql
Image Offer Changes to this property will trigger replacement.
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- sql
Image Sku Changes to this property will trigger replacement.
Vm Group Image Sku - SQL image sku.
- sql
Virtual Machine Group Name Changes to this property will trigger replacement.
- Name of the SQL virtual machine group.
- Map<String,String>
- Resource tags.
- wsfc
Domain Profile Changes to this property will trigger replacement.
Domain Profile - Cluster Active Directory domain profile.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location
Changes to this property will trigger replacement.
- Resource location.
- sql
Image Offer Changes to this property will trigger replacement.
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- sql
Image Sku Changes to this property will trigger replacement.
Vm Group Image Sku - SQL image sku.
- sql
Virtual Machine Group Name Changes to this property will trigger replacement.
- Name of the SQL virtual machine group.
- {[key: string]: string}
- Resource tags.
- wsfc
Domain Profile Changes to this property will trigger replacement.
Domain Profile - Cluster Active Directory domain profile.
- resource_
group_ name This property is required. Changes to this property will trigger replacement.
- Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location
Changes to this property will trigger replacement.
- Resource location.
- sql_
image_ offer Changes to this property will trigger replacement.
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- sql_
image_ sku Changes to this property will trigger replacement.
Vm Group Image Sku - SQL image sku.
- sql_
virtual_ machine_ group_ name Changes to this property will trigger replacement.
- Name of the SQL virtual machine group.
- Mapping[str, str]
- Resource tags.
- wsfc_
domain_ profile Changes to this property will trigger replacement.
Domain Profile Args - Cluster Active Directory domain profile.
- resource
Group Name This property is required. Changes to this property will trigger replacement.
- Name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
- location
Changes to this property will trigger replacement.
- Resource location.
- sql
Image Offer Changes to this property will trigger replacement.
- SQL image offer. Examples may include SQL2016-WS2016, SQL2017-WS2016.
- sql
Image Sku Changes to this property will trigger replacement.
- SQL image sku.
- sql
Virtual Machine Group Name Changes to this property will trigger replacement.
- Name of the SQL virtual machine group.
- Map<String>
- Resource tags.
- wsfc
Domain Profile Changes to this property will trigger replacement.
- Cluster Active Directory domain profile.
Outputs
All input properties are implicitly available as output properties. Additionally, the SqlVirtualMachineGroup resource produces the following output properties:
- Cluster
Configuration string - Cluster type.
- Cluster
Manager stringType - Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning state to track the async operation status.
- Scale
Type string - Scale type.
- System
Data Pulumi.Azure Native. Sql Virtual Machine. Outputs. System Data Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type.
- Cluster
Configuration string - Cluster type.
- Cluster
Manager stringType - Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - Provisioning state to track the async operation status.
- Scale
Type string - Scale type.
- System
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- Type string
- Resource type.
- cluster
Configuration String - Cluster type.
- cluster
Manager StringType - Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning state to track the async operation status.
- scale
Type String - Scale type.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type.
- cluster
Configuration string - Cluster type.
- cluster
Manager stringType - Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- provisioning
State string - Provisioning state to track the async operation status.
- scale
Type string - Scale type.
- system
Data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type string
- Resource type.
- cluster_
configuration str - Cluster type.
- cluster_
manager_ strtype - Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name.
- provisioning_
state str - Provisioning state to track the async operation status.
- scale_
type str - Scale type.
- system_
data SystemData Response - Metadata pertaining to creation and last modification of the resource.
- type str
- Resource type.
- cluster
Configuration String - Cluster type.
- cluster
Manager StringType - Type of cluster manager: Windows Server Failover Cluster (WSFC), implied by the scale type of the group and the OS type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - Provisioning state to track the async operation status.
- scale
Type String - Scale type.
- system
Data Property Map - Metadata pertaining to creation and last modification of the resource.
- type String
- Resource type.
Supporting Types
ClusterSubnetType, ClusterSubnetTypeArgs
- Single
Subnet - SingleSubnet
- Multi
Subnet - MultiSubnet
- Cluster
Subnet Type Single Subnet - SingleSubnet
- Cluster
Subnet Type Multi Subnet - MultiSubnet
- Single
Subnet - SingleSubnet
- Multi
Subnet - MultiSubnet
- Single
Subnet - SingleSubnet
- Multi
Subnet - MultiSubnet
- SINGLE_SUBNET
- SingleSubnet
- MULTI_SUBNET
- MultiSubnet
- "Single
Subnet" - SingleSubnet
- "Multi
Subnet" - MultiSubnet
SqlVmGroupImageSku, SqlVmGroupImageSkuArgs
- Developer
- Developer
- Enterprise
- Enterprise
- Sql
Vm Group Image Sku Developer - Developer
- Sql
Vm Group Image Sku Enterprise - Enterprise
- Developer
- Developer
- Enterprise
- Enterprise
- Developer
- Developer
- Enterprise
- Enterprise
- DEVELOPER
- Developer
- ENTERPRISE
- Enterprise
- "Developer"
- Developer
- "Enterprise"
- Enterprise
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
WsfcDomainProfile, WsfcDomainProfileArgs
- Cluster
Bootstrap stringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- Cluster
Operator stringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- Cluster
Subnet string | Pulumi.Type Azure Native. Sql Virtual Machine. Cluster Subnet Type - Cluster subnet type.
- Domain
Fqdn string - Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- Ou
Path string - Organizational Unit path in which the nodes and cluster will be present.
- Sql
Service stringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- Storage
Account stringPrimary Key - Primary key of the witness storage account.
- Storage
Account stringUrl - Fully qualified ARM resource id of the witness storage account.
- Cluster
Bootstrap stringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- Cluster
Operator stringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- Cluster
Subnet string | ClusterType Subnet Type - Cluster subnet type.
- Domain
Fqdn string - Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- Ou
Path string - Organizational Unit path in which the nodes and cluster will be present.
- Sql
Service stringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- Storage
Account stringPrimary Key - Primary key of the witness storage account.
- Storage
Account stringUrl - Fully qualified ARM resource id of the witness storage account.
- cluster
Bootstrap StringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster
Operator StringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster
Subnet String | ClusterType Subnet Type - Cluster subnet type.
- domain
Fqdn String - Fully qualified name of the domain.
- String
- Optional path for fileshare witness.
- ou
Path String - Organizational Unit path in which the nodes and cluster will be present.
- sql
Service StringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage
Account StringPrimary Key - Primary key of the witness storage account.
- storage
Account StringUrl - Fully qualified ARM resource id of the witness storage account.
- cluster
Bootstrap stringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster
Operator stringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster
Subnet string | ClusterType Subnet Type - Cluster subnet type.
- domain
Fqdn string - Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- ou
Path string - Organizational Unit path in which the nodes and cluster will be present.
- sql
Service stringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage
Account stringPrimary Key - Primary key of the witness storage account.
- storage
Account stringUrl - Fully qualified ARM resource id of the witness storage account.
- cluster_
bootstrap_ straccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster_
operator_ straccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster_
subnet_ str | Clustertype Subnet Type - Cluster subnet type.
- domain_
fqdn str - Fully qualified name of the domain.
- str
- Optional path for fileshare witness.
- ou_
path str - Organizational Unit path in which the nodes and cluster will be present.
- sql_
service_ straccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage_
account_ strprimary_ key - Primary key of the witness storage account.
- storage_
account_ strurl - Fully qualified ARM resource id of the witness storage account.
- cluster
Bootstrap StringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster
Operator StringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster
Subnet String | "SingleType Subnet" | "Multi Subnet" - Cluster subnet type.
- domain
Fqdn String - Fully qualified name of the domain.
- String
- Optional path for fileshare witness.
- ou
Path String - Organizational Unit path in which the nodes and cluster will be present.
- sql
Service StringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage
Account StringPrimary Key - Primary key of the witness storage account.
- storage
Account StringUrl - Fully qualified ARM resource id of the witness storage account.
WsfcDomainProfileResponse, WsfcDomainProfileResponseArgs
- Cluster
Bootstrap stringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- Cluster
Operator stringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- Cluster
Subnet stringType - Cluster subnet type.
- Domain
Fqdn string - Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- Ou
Path string - Organizational Unit path in which the nodes and cluster will be present.
- Sql
Service stringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- Storage
Account stringUrl - Fully qualified ARM resource id of the witness storage account.
- Cluster
Bootstrap stringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- Cluster
Operator stringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- Cluster
Subnet stringType - Cluster subnet type.
- Domain
Fqdn string - Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- Ou
Path string - Organizational Unit path in which the nodes and cluster will be present.
- Sql
Service stringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- Storage
Account stringUrl - Fully qualified ARM resource id of the witness storage account.
- cluster
Bootstrap StringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster
Operator StringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster
Subnet StringType - Cluster subnet type.
- domain
Fqdn String - Fully qualified name of the domain.
- String
- Optional path for fileshare witness.
- ou
Path String - Organizational Unit path in which the nodes and cluster will be present.
- sql
Service StringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage
Account StringUrl - Fully qualified ARM resource id of the witness storage account.
- cluster
Bootstrap stringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster
Operator stringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster
Subnet stringType - Cluster subnet type.
- domain
Fqdn string - Fully qualified name of the domain.
- string
- Optional path for fileshare witness.
- ou
Path string - Organizational Unit path in which the nodes and cluster will be present.
- sql
Service stringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage
Account stringUrl - Fully qualified ARM resource id of the witness storage account.
- cluster_
bootstrap_ straccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster_
operator_ straccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster_
subnet_ strtype - Cluster subnet type.
- domain_
fqdn str - Fully qualified name of the domain.
- str
- Optional path for fileshare witness.
- ou_
path str - Organizational Unit path in which the nodes and cluster will be present.
- sql_
service_ straccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage_
account_ strurl - Fully qualified ARM resource id of the witness storage account.
- cluster
Bootstrap StringAccount - Account name used for creating cluster (at minimum needs permissions to 'Create Computer Objects' in domain).
- cluster
Operator StringAccount - Account name used for operating cluster i.e. will be part of administrators group on all the participating virtual machines in the cluster.
- cluster
Subnet StringType - Cluster subnet type.
- domain
Fqdn String - Fully qualified name of the domain.
- String
- Optional path for fileshare witness.
- ou
Path String - Organizational Unit path in which the nodes and cluster will be present.
- sql
Service StringAccount - Account name under which SQL service will run on all participating SQL virtual machines in the cluster.
- storage
Account StringUrl - Fully qualified ARM resource id of the witness storage account.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:sqlvirtualmachine:SqlVirtualMachineGroup testvmgroup /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.SqlVirtualMachine/sqlVirtualMachineGroups/{sqlVirtualMachineGroupName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0