We recommend using Azure Native.
azure.core.SubscriptionTemplateDeployment
Explore with Pulumi AI
Manages a Subscription Template Deployment.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.SubscriptionTemplateDeployment("example", {
name: "example-deployment",
location: "West Europe",
templateContent: ` {
"schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"type": "Microsoft.Resources/resourceGroups",
"apiVersion": "2018-05-01",
"location": "West Europe",
"name": "some-resource-group",
"properties": {}
}
]
}
`,
});
import pulumi
import pulumi_azure as azure
example = azure.core.SubscriptionTemplateDeployment("example",
name="example-deployment",
location="West Europe",
template_content=""" {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"type": "Microsoft.Resources/resourceGroups",
"apiVersion": "2018-05-01",
"location": "West Europe",
"name": "some-resource-group",
"properties": {}
}
]
}
""")
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := core.NewSubscriptionTemplateDeployment(ctx, "example", &core.SubscriptionTemplateDeploymentArgs{
Name: pulumi.String("example-deployment"),
Location: pulumi.String("West Europe"),
TemplateContent: pulumi.String(` {
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"type": "Microsoft.Resources/resourceGroups",
"apiVersion": "2018-05-01",
"location": "West Europe",
"name": "some-resource-group",
"properties": {}
}
]
}
`),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.SubscriptionTemplateDeployment("example", new()
{
Name = "example-deployment",
Location = "West Europe",
TemplateContent = @" {
""$schema"": ""https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#"",
""contentVersion"": ""1.0.0.0"",
""parameters"": {},
""variables"": {},
""resources"": [
{
""type"": ""Microsoft.Resources/resourceGroups"",
""apiVersion"": ""2018-05-01"",
""location"": ""West Europe"",
""name"": ""some-resource-group"",
""properties"": {}
}
]
}
",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.SubscriptionTemplateDeployment;
import com.pulumi.azure.core.SubscriptionTemplateDeploymentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new SubscriptionTemplateDeployment("example", SubscriptionTemplateDeploymentArgs.builder()
.name("example-deployment")
.location("West Europe")
.templateContent("""
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"type": "Microsoft.Resources/resourceGroups",
"apiVersion": "2018-05-01",
"location": "West Europe",
"name": "some-resource-group",
"properties": {}
}
]
}
""")
.build());
}
}
resources:
example:
type: azure:core:SubscriptionTemplateDeployment
properties:
name: example-deployment
location: West Europe
templateContent: |2
{
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {},
"variables": {},
"resources": [
{
"type": "Microsoft.Resources/resourceGroups",
"apiVersion": "2018-05-01",
"location": "West Europe",
"name": "some-resource-group",
"properties": {}
}
]
}
Create SubscriptionTemplateDeployment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SubscriptionTemplateDeployment(name: string, args?: SubscriptionTemplateDeploymentArgs, opts?: CustomResourceOptions);
@overload
def SubscriptionTemplateDeployment(resource_name: str,
args: Optional[SubscriptionTemplateDeploymentArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SubscriptionTemplateDeployment(resource_name: str,
opts: Optional[ResourceOptions] = None,
debug_level: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
parameters_content: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
template_content: Optional[str] = None,
template_spec_version_id: Optional[str] = None)
func NewSubscriptionTemplateDeployment(ctx *Context, name string, args *SubscriptionTemplateDeploymentArgs, opts ...ResourceOption) (*SubscriptionTemplateDeployment, error)
public SubscriptionTemplateDeployment(string name, SubscriptionTemplateDeploymentArgs? args = null, CustomResourceOptions? opts = null)
public SubscriptionTemplateDeployment(String name, SubscriptionTemplateDeploymentArgs args)
public SubscriptionTemplateDeployment(String name, SubscriptionTemplateDeploymentArgs args, CustomResourceOptions options)
type: azure:core:SubscriptionTemplateDeployment
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SubscriptionTemplateDeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SubscriptionTemplateDeploymentArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SubscriptionTemplateDeploymentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SubscriptionTemplateDeploymentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SubscriptionTemplateDeploymentArgs
- 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 subscriptionTemplateDeploymentResource = new Azure.Core.SubscriptionTemplateDeployment("subscriptionTemplateDeploymentResource", new()
{
DebugLevel = "string",
Location = "string",
Name = "string",
ParametersContent = "string",
Tags =
{
{ "string", "string" },
},
TemplateContent = "string",
TemplateSpecVersionId = "string",
});
example, err := core.NewSubscriptionTemplateDeployment(ctx, "subscriptionTemplateDeploymentResource", &core.SubscriptionTemplateDeploymentArgs{
DebugLevel: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
ParametersContent: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
TemplateContent: pulumi.String("string"),
TemplateSpecVersionId: pulumi.String("string"),
})
var subscriptionTemplateDeploymentResource = new SubscriptionTemplateDeployment("subscriptionTemplateDeploymentResource", SubscriptionTemplateDeploymentArgs.builder()
.debugLevel("string")
.location("string")
.name("string")
.parametersContent("string")
.tags(Map.of("string", "string"))
.templateContent("string")
.templateSpecVersionId("string")
.build());
subscription_template_deployment_resource = azure.core.SubscriptionTemplateDeployment("subscriptionTemplateDeploymentResource",
debug_level="string",
location="string",
name="string",
parameters_content="string",
tags={
"string": "string",
},
template_content="string",
template_spec_version_id="string")
const subscriptionTemplateDeploymentResource = new azure.core.SubscriptionTemplateDeployment("subscriptionTemplateDeploymentResource", {
debugLevel: "string",
location: "string",
name: "string",
parametersContent: "string",
tags: {
string: "string",
},
templateContent: "string",
templateSpecVersionId: "string",
});
type: azure:core:SubscriptionTemplateDeployment
properties:
debugLevel: string
location: string
name: string
parametersContent: string
tags:
string: string
templateContent: string
templateSpecVersionId: string
SubscriptionTemplateDeployment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SubscriptionTemplateDeployment resource accepts the following input properties:
- Debug
Level string - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - Location string
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- Name string
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- Parameters
Content string - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- Template
Content string - The contents of the ARM Template which should be deployed into this Subscription.
- Template
Spec stringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- Debug
Level string - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - Location string
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- Name string
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- Parameters
Content string - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- map[string]string
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- Template
Content string - The contents of the ARM Template which should be deployed into this Subscription.
- Template
Spec stringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- debug
Level String - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - location String
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- name String
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- parameters
Content String - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- Map<String,String>
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- template
Content String - The contents of the ARM Template which should be deployed into this Subscription.
- template
Spec StringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- debug
Level string - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - location string
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- name string
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- parameters
Content string - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- template
Content string - The contents of the ARM Template which should be deployed into this Subscription.
- template
Spec stringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- debug_
level str - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - location str
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- name str
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- parameters_
content str - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- template_
content str - The contents of the ARM Template which should be deployed into this Subscription.
- template_
spec_ strversion_ id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- debug
Level String - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - location String
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- name String
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- parameters
Content String - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- Map<String>
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- template
Content String - The contents of the ARM Template which should be deployed into this Subscription.
- template
Spec StringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
Outputs
All input properties are implicitly available as output properties. Additionally, the SubscriptionTemplateDeployment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Output
Content string - The JSON Content of the Outputs of the ARM Template Deployment.
- Id string
- The provider-assigned unique ID for this managed resource.
- Output
Content string - The JSON Content of the Outputs of the ARM Template Deployment.
- id String
- The provider-assigned unique ID for this managed resource.
- output
Content String - The JSON Content of the Outputs of the ARM Template Deployment.
- id string
- The provider-assigned unique ID for this managed resource.
- output
Content string - The JSON Content of the Outputs of the ARM Template Deployment.
- id str
- The provider-assigned unique ID for this managed resource.
- output_
content str - The JSON Content of the Outputs of the ARM Template Deployment.
- id String
- The provider-assigned unique ID for this managed resource.
- output
Content String - The JSON Content of the Outputs of the ARM Template Deployment.
Look up Existing SubscriptionTemplateDeployment Resource
Get an existing SubscriptionTemplateDeployment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SubscriptionTemplateDeploymentState, opts?: CustomResourceOptions): SubscriptionTemplateDeployment
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
debug_level: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
output_content: Optional[str] = None,
parameters_content: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
template_content: Optional[str] = None,
template_spec_version_id: Optional[str] = None) -> SubscriptionTemplateDeployment
func GetSubscriptionTemplateDeployment(ctx *Context, name string, id IDInput, state *SubscriptionTemplateDeploymentState, opts ...ResourceOption) (*SubscriptionTemplateDeployment, error)
public static SubscriptionTemplateDeployment Get(string name, Input<string> id, SubscriptionTemplateDeploymentState? state, CustomResourceOptions? opts = null)
public static SubscriptionTemplateDeployment get(String name, Output<String> id, SubscriptionTemplateDeploymentState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Debug
Level string - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - Location string
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- Name string
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- Output
Content string - The JSON Content of the Outputs of the ARM Template Deployment.
- Parameters
Content string - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- Template
Content string - The contents of the ARM Template which should be deployed into this Subscription.
- Template
Spec stringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- Debug
Level string - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - Location string
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- Name string
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- Output
Content string - The JSON Content of the Outputs of the ARM Template Deployment.
- Parameters
Content string - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- map[string]string
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- Template
Content string - The contents of the ARM Template which should be deployed into this Subscription.
- Template
Spec stringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- debug
Level String - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - location String
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- name String
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- output
Content String - The JSON Content of the Outputs of the ARM Template Deployment.
- parameters
Content String - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- Map<String,String>
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- template
Content String - The contents of the ARM Template which should be deployed into this Subscription.
- template
Spec StringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- debug
Level string - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - location string
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- name string
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- output
Content string - The JSON Content of the Outputs of the ARM Template Deployment.
- parameters
Content string - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- template
Content string - The contents of the ARM Template which should be deployed into this Subscription.
- template
Spec stringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- debug_
level str - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - location str
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- name str
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- output_
content str - The JSON Content of the Outputs of the ARM Template Deployment.
- parameters_
content str - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- template_
content str - The contents of the ARM Template which should be deployed into this Subscription.
- template_
spec_ strversion_ id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
- debug
Level String - The Debug Level which should be used for this Subscription Template Deployment. Possible values are
none
,requestContent
,responseContent
andrequestContent, responseContent
. - location String
- The Azure Region where the Subscription Template Deployment should exist. Changing this forces a new Subscription Template Deployment to be created.
- name String
- The name which should be used for this Subscription Template Deployment. Changing this forces a new Subscription Template Deployment to be created.
- output
Content String - The JSON Content of the Outputs of the ARM Template Deployment.
- parameters
Content String - The contents of the ARM Template parameters file - containing a JSON list of parameters.
- Map<String>
- A mapping of tags which should be assigned to the Subscription Template Deployment.
- template
Content String - The contents of the ARM Template which should be deployed into this Subscription.
- template
Spec StringVersion Id - The ID of the Template Spec Version to deploy into the Subscription. Cannot be specified with
template_content
.
Import
Subscription Template Deployments can be imported using the resource id
, e.g.
$ pulumi import azure:core/subscriptionTemplateDeployment:SubscriptionTemplateDeployment example /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/template1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.