1. Packages
  2. AWS
  3. API Docs
  4. servicecatalog
  5. ProvisioningArtifact
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.servicecatalog.ProvisioningArtifact

Explore with Pulumi AI

Manages a Service Catalog Provisioning Artifact for a specified product.

A “provisioning artifact” is also referred to as a “version.”

NOTE: You cannot create a provisioning artifact for a product that was shared with you.

NOTE: The user or role that use this resource must have the cloudformation:GetTemplate IAM policy permission. This policy permission is required when using the template_physical_id argument.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.servicecatalog.ProvisioningArtifact("example", {
    name: "example",
    productId: exampleAwsServicecatalogProduct.id,
    type: "CLOUD_FORMATION_TEMPLATE",
    templateUrl: `https://${exampleAwsS3Bucket.bucketRegionalDomainName}/${exampleAwsS3Object.key}`,
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.servicecatalog.ProvisioningArtifact("example",
    name="example",
    product_id=example_aws_servicecatalog_product["id"],
    type="CLOUD_FORMATION_TEMPLATE",
    template_url=f"https://{example_aws_s3_bucket['bucketRegionalDomainName']}/{example_aws_s3_object['key']}")
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/servicecatalog"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := servicecatalog.NewProvisioningArtifact(ctx, "example", &servicecatalog.ProvisioningArtifactArgs{
			Name:        pulumi.String("example"),
			ProductId:   pulumi.Any(exampleAwsServicecatalogProduct.Id),
			Type:        pulumi.String("CLOUD_FORMATION_TEMPLATE"),
			TemplateUrl: pulumi.Sprintf("https://%v/%v", exampleAwsS3Bucket.BucketRegionalDomainName, exampleAwsS3Object.Key),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.ServiceCatalog.ProvisioningArtifact("example", new()
    {
        Name = "example",
        ProductId = exampleAwsServicecatalogProduct.Id,
        Type = "CLOUD_FORMATION_TEMPLATE",
        TemplateUrl = $"https://{exampleAwsS3Bucket.BucketRegionalDomainName}/{exampleAwsS3Object.Key}",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.servicecatalog.ProvisioningArtifact;
import com.pulumi.aws.servicecatalog.ProvisioningArtifactArgs;
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 ProvisioningArtifact("example", ProvisioningArtifactArgs.builder()
            .name("example")
            .productId(exampleAwsServicecatalogProduct.id())
            .type("CLOUD_FORMATION_TEMPLATE")
            .templateUrl(String.format("https://%s/%s", exampleAwsS3Bucket.bucketRegionalDomainName(),exampleAwsS3Object.key()))
            .build());

    }
}
Copy
resources:
  example:
    type: aws:servicecatalog:ProvisioningArtifact
    properties:
      name: example
      productId: ${exampleAwsServicecatalogProduct.id}
      type: CLOUD_FORMATION_TEMPLATE
      templateUrl: https://${exampleAwsS3Bucket.bucketRegionalDomainName}/${exampleAwsS3Object.key}
Copy

Create ProvisioningArtifact Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ProvisioningArtifact(name: string, args: ProvisioningArtifactArgs, opts?: CustomResourceOptions);
@overload
def ProvisioningArtifact(resource_name: str,
                         args: ProvisioningArtifactArgs,
                         opts: Optional[ResourceOptions] = None)

@overload
def ProvisioningArtifact(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         product_id: Optional[str] = None,
                         accept_language: Optional[str] = None,
                         active: Optional[bool] = None,
                         description: Optional[str] = None,
                         disable_template_validation: Optional[bool] = None,
                         guidance: Optional[str] = None,
                         name: Optional[str] = None,
                         template_physical_id: Optional[str] = None,
                         template_url: Optional[str] = None,
                         type: Optional[str] = None)
func NewProvisioningArtifact(ctx *Context, name string, args ProvisioningArtifactArgs, opts ...ResourceOption) (*ProvisioningArtifact, error)
public ProvisioningArtifact(string name, ProvisioningArtifactArgs args, CustomResourceOptions? opts = null)
public ProvisioningArtifact(String name, ProvisioningArtifactArgs args)
public ProvisioningArtifact(String name, ProvisioningArtifactArgs args, CustomResourceOptions options)
type: aws:servicecatalog:ProvisioningArtifact
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. ProvisioningArtifactArgs
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. ProvisioningArtifactArgs
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. ProvisioningArtifactArgs
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. ProvisioningArtifactArgs
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. ProvisioningArtifactArgs
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 provisioningArtifactResource = new Aws.ServiceCatalog.ProvisioningArtifact("provisioningArtifactResource", new()
{
    ProductId = "string",
    AcceptLanguage = "string",
    Active = false,
    Description = "string",
    DisableTemplateValidation = false,
    Guidance = "string",
    Name = "string",
    TemplatePhysicalId = "string",
    TemplateUrl = "string",
    Type = "string",
});
Copy
example, err := servicecatalog.NewProvisioningArtifact(ctx, "provisioningArtifactResource", &servicecatalog.ProvisioningArtifactArgs{
	ProductId:                 pulumi.String("string"),
	AcceptLanguage:            pulumi.String("string"),
	Active:                    pulumi.Bool(false),
	Description:               pulumi.String("string"),
	DisableTemplateValidation: pulumi.Bool(false),
	Guidance:                  pulumi.String("string"),
	Name:                      pulumi.String("string"),
	TemplatePhysicalId:        pulumi.String("string"),
	TemplateUrl:               pulumi.String("string"),
	Type:                      pulumi.String("string"),
})
Copy
var provisioningArtifactResource = new ProvisioningArtifact("provisioningArtifactResource", ProvisioningArtifactArgs.builder()
    .productId("string")
    .acceptLanguage("string")
    .active(false)
    .description("string")
    .disableTemplateValidation(false)
    .guidance("string")
    .name("string")
    .templatePhysicalId("string")
    .templateUrl("string")
    .type("string")
    .build());
Copy
provisioning_artifact_resource = aws.servicecatalog.ProvisioningArtifact("provisioningArtifactResource",
    product_id="string",
    accept_language="string",
    active=False,
    description="string",
    disable_template_validation=False,
    guidance="string",
    name="string",
    template_physical_id="string",
    template_url="string",
    type="string")
Copy
const provisioningArtifactResource = new aws.servicecatalog.ProvisioningArtifact("provisioningArtifactResource", {
    productId: "string",
    acceptLanguage: "string",
    active: false,
    description: "string",
    disableTemplateValidation: false,
    guidance: "string",
    name: "string",
    templatePhysicalId: "string",
    templateUrl: "string",
    type: "string",
});
Copy
type: aws:servicecatalog:ProvisioningArtifact
properties:
    acceptLanguage: string
    active: false
    description: string
    disableTemplateValidation: false
    guidance: string
    name: string
    productId: string
    templatePhysicalId: string
    templateUrl: string
    type: string
Copy

ProvisioningArtifact 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 ProvisioningArtifact resource accepts the following input properties:

ProductId This property is required. string
Identifier of the product.
AcceptLanguage string
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
Active bool
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
Description string
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
DisableTemplateValidation Changes to this property will trigger replacement. bool
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
Guidance string
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
Name string
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
TemplatePhysicalId Changes to this property will trigger replacement. string
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
TemplateUrl Changes to this property will trigger replacement. string

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

Type Changes to this property will trigger replacement. string
Type of provisioning artifact. See AWS Docs for valid list of values.
ProductId This property is required. string
Identifier of the product.
AcceptLanguage string
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
Active bool
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
Description string
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
DisableTemplateValidation Changes to this property will trigger replacement. bool
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
Guidance string
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
Name string
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
TemplatePhysicalId Changes to this property will trigger replacement. string
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
TemplateUrl Changes to this property will trigger replacement. string

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

Type Changes to this property will trigger replacement. string
Type of provisioning artifact. See AWS Docs for valid list of values.
productId This property is required. String
Identifier of the product.
acceptLanguage String
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
active Boolean
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
description String
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
disableTemplateValidation Changes to this property will trigger replacement. Boolean
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
guidance String
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
name String
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
templatePhysicalId Changes to this property will trigger replacement. String
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
templateUrl Changes to this property will trigger replacement. String

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

type Changes to this property will trigger replacement. String
Type of provisioning artifact. See AWS Docs for valid list of values.
productId This property is required. string
Identifier of the product.
acceptLanguage string
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
active boolean
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
description string
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
disableTemplateValidation Changes to this property will trigger replacement. boolean
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
guidance string
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
name string
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
templatePhysicalId Changes to this property will trigger replacement. string
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
templateUrl Changes to this property will trigger replacement. string

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

type Changes to this property will trigger replacement. string
Type of provisioning artifact. See AWS Docs for valid list of values.
product_id This property is required. str
Identifier of the product.
accept_language str
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
active bool
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
description str
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
disable_template_validation Changes to this property will trigger replacement. bool
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
guidance str
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
name str
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
template_physical_id Changes to this property will trigger replacement. str
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
template_url Changes to this property will trigger replacement. str

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

type Changes to this property will trigger replacement. str
Type of provisioning artifact. See AWS Docs for valid list of values.
productId This property is required. String
Identifier of the product.
acceptLanguage String
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
active Boolean
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
description String
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
disableTemplateValidation Changes to this property will trigger replacement. Boolean
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
guidance String
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
name String
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
templatePhysicalId Changes to this property will trigger replacement. String
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
templateUrl Changes to this property will trigger replacement. String

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

type Changes to this property will trigger replacement. String
Type of provisioning artifact. See AWS Docs for valid list of values.

Outputs

All input properties are implicitly available as output properties. Additionally, the ProvisioningArtifact resource produces the following output properties:

CreatedTime string
Time when the provisioning artifact was created.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningArtifactId string
Provisioning artifact identifier.
CreatedTime string
Time when the provisioning artifact was created.
Id string
The provider-assigned unique ID for this managed resource.
ProvisioningArtifactId string
Provisioning artifact identifier.
createdTime String
Time when the provisioning artifact was created.
id String
The provider-assigned unique ID for this managed resource.
provisioningArtifactId String
Provisioning artifact identifier.
createdTime string
Time when the provisioning artifact was created.
id string
The provider-assigned unique ID for this managed resource.
provisioningArtifactId string
Provisioning artifact identifier.
created_time str
Time when the provisioning artifact was created.
id str
The provider-assigned unique ID for this managed resource.
provisioning_artifact_id str
Provisioning artifact identifier.
createdTime String
Time when the provisioning artifact was created.
id String
The provider-assigned unique ID for this managed resource.
provisioningArtifactId String
Provisioning artifact identifier.

Look up Existing ProvisioningArtifact Resource

Get an existing ProvisioningArtifact 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?: ProvisioningArtifactState, opts?: CustomResourceOptions): ProvisioningArtifact
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        accept_language: Optional[str] = None,
        active: Optional[bool] = None,
        created_time: Optional[str] = None,
        description: Optional[str] = None,
        disable_template_validation: Optional[bool] = None,
        guidance: Optional[str] = None,
        name: Optional[str] = None,
        product_id: Optional[str] = None,
        provisioning_artifact_id: Optional[str] = None,
        template_physical_id: Optional[str] = None,
        template_url: Optional[str] = None,
        type: Optional[str] = None) -> ProvisioningArtifact
func GetProvisioningArtifact(ctx *Context, name string, id IDInput, state *ProvisioningArtifactState, opts ...ResourceOption) (*ProvisioningArtifact, error)
public static ProvisioningArtifact Get(string name, Input<string> id, ProvisioningArtifactState? state, CustomResourceOptions? opts = null)
public static ProvisioningArtifact get(String name, Output<String> id, ProvisioningArtifactState state, CustomResourceOptions options)
resources:  _:    type: aws:servicecatalog:ProvisioningArtifact    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AcceptLanguage string
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
Active bool
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
CreatedTime string
Time when the provisioning artifact was created.
Description string
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
DisableTemplateValidation Changes to this property will trigger replacement. bool
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
Guidance string
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
Name string
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
ProductId string
Identifier of the product.
ProvisioningArtifactId string
Provisioning artifact identifier.
TemplatePhysicalId Changes to this property will trigger replacement. string
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
TemplateUrl Changes to this property will trigger replacement. string

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

Type Changes to this property will trigger replacement. string
Type of provisioning artifact. See AWS Docs for valid list of values.
AcceptLanguage string
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
Active bool
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
CreatedTime string
Time when the provisioning artifact was created.
Description string
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
DisableTemplateValidation Changes to this property will trigger replacement. bool
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
Guidance string
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
Name string
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
ProductId string
Identifier of the product.
ProvisioningArtifactId string
Provisioning artifact identifier.
TemplatePhysicalId Changes to this property will trigger replacement. string
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
TemplateUrl Changes to this property will trigger replacement. string

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

Type Changes to this property will trigger replacement. string
Type of provisioning artifact. See AWS Docs for valid list of values.
acceptLanguage String
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
active Boolean
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
createdTime String
Time when the provisioning artifact was created.
description String
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
disableTemplateValidation Changes to this property will trigger replacement. Boolean
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
guidance String
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
name String
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
productId String
Identifier of the product.
provisioningArtifactId String
Provisioning artifact identifier.
templatePhysicalId Changes to this property will trigger replacement. String
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
templateUrl Changes to this property will trigger replacement. String

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

type Changes to this property will trigger replacement. String
Type of provisioning artifact. See AWS Docs for valid list of values.
acceptLanguage string
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
active boolean
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
createdTime string
Time when the provisioning artifact was created.
description string
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
disableTemplateValidation Changes to this property will trigger replacement. boolean
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
guidance string
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
name string
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
productId string
Identifier of the product.
provisioningArtifactId string
Provisioning artifact identifier.
templatePhysicalId Changes to this property will trigger replacement. string
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
templateUrl Changes to this property will trigger replacement. string

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

type Changes to this property will trigger replacement. string
Type of provisioning artifact. See AWS Docs for valid list of values.
accept_language str
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
active bool
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
created_time str
Time when the provisioning artifact was created.
description str
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
disable_template_validation Changes to this property will trigger replacement. bool
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
guidance str
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
name str
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
product_id str
Identifier of the product.
provisioning_artifact_id str
Provisioning artifact identifier.
template_physical_id Changes to this property will trigger replacement. str
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
template_url Changes to this property will trigger replacement. str

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

type Changes to this property will trigger replacement. str
Type of provisioning artifact. See AWS Docs for valid list of values.
acceptLanguage String
Language code. Valid values: en (English), jp (Japanese), zh (Chinese). The default value is en.
active Boolean
Whether the product version is active. Inactive provisioning artifacts are invisible to end users. End users cannot launch or update a provisioned product from an inactive provisioning artifact. Default is true.
createdTime String
Time when the provisioning artifact was created.
description String
Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.
disableTemplateValidation Changes to this property will trigger replacement. Boolean
Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.
guidance String
Information set by the administrator to provide guidance to end users about which provisioning artifacts to use. Valid values are DEFAULT and DEPRECATED. The default is DEFAULT. Users are able to make updates to a provisioned product of a deprecated version but cannot launch new provisioned products using a deprecated version.
name String
Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.
productId String
Identifier of the product.
provisioningArtifactId String
Provisioning artifact identifier.
templatePhysicalId Changes to this property will trigger replacement. String
Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].
templateUrl Changes to this property will trigger replacement. String

Template source as URL of the CloudFormation template in Amazon S3.

The following arguments are optional:

type Changes to this property will trigger replacement. String
Type of provisioning artifact. See AWS Docs for valid list of values.

Import

Using pulumi import, import aws_servicecatalog_provisioning_artifact using the provisioning artifact ID and product ID separated by a colon. For example:

$ pulumi import aws:servicecatalog/provisioningArtifact:ProvisioningArtifact example pa-ij2b6lusy6dec:prod-el3an0rma3
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.