1. Packages
  2. AWS Classic
  3. API Docs
  4. servicecatalog
  5. ProvisioningArtifact

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

aws.servicecatalog.ProvisioningArtifact

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

    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

    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()
        {
            ProductId = aws_servicecatalog_product.Example.Id,
            Type = "CLOUD_FORMATION_TEMPLATE",
            TemplateUrl = $"https://{aws_s3_bucket.Example.Bucket_regional_domain_name}/{aws_s3_object.Example.Key}",
        });
    
    });
    
    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{
    			ProductId:   pulumi.Any(aws_servicecatalog_product.Example.Id),
    			Type:        pulumi.String("CLOUD_FORMATION_TEMPLATE"),
    			TemplateUrl: pulumi.String(fmt.Sprintf("https://%v/%v", aws_s3_bucket.Example.Bucket_regional_domain_name, aws_s3_object.Example.Key)),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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()        
                .productId(aws_servicecatalog_product.example().id())
                .type("CLOUD_FORMATION_TEMPLATE")
                .templateUrl(String.format("https://%s/%s", aws_s3_bucket.example().bucket_regional_domain_name(),aws_s3_object.example().key()))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.servicecatalog.ProvisioningArtifact("example",
        product_id=aws_servicecatalog_product["example"]["id"],
        type="CLOUD_FORMATION_TEMPLATE",
        template_url=f"https://{aws_s3_bucket['example']['bucket_regional_domain_name']}/{aws_s3_object['example']['key']}")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.servicecatalog.ProvisioningArtifact("example", {
        productId: aws_servicecatalog_product.example.id,
        type: "CLOUD_FORMATION_TEMPLATE",
        templateUrl: `https://${aws_s3_bucket.example.bucket_regional_domain_name}/${aws_s3_object.example.key}`,
    });
    
    resources:
      example:
        type: aws:servicecatalog:ProvisioningArtifact
        properties:
          productId: ${aws_servicecatalog_product.example.id}
          type: CLOUD_FORMATION_TEMPLATE
          templateUrl: https://${aws_s3_bucket.example.bucket_regional_domain_name}/${aws_s3_object.example.key}
    

    Create ProvisioningArtifact Resource

    new ProvisioningArtifact(name: string, args: ProvisioningArtifactArgs, opts?: CustomResourceOptions);
    @overload
    def ProvisioningArtifact(resource_name: str,
                             opts: Optional[ResourceOptions] = 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,
                             product_id: Optional[str] = None,
                             template_physical_id: Optional[str] = None,
                             template_url: Optional[str] = None,
                             type: Optional[str] = None)
    @overload
    def ProvisioningArtifact(resource_name: str,
                             args: ProvisioningArtifactArgs,
                             opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args ProvisioningArtifactArgs
    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 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 string
    The unique name of the resource.
    args ProvisioningArtifactArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProvisioningArtifactArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProvisioningArtifactArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The ProvisioningArtifact resource accepts the following input properties:

    ProductId 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 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 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 string

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

    The following arguments are optional:

    Type string

    Type of provisioning artifact. See AWS Docs for valid list of values.

    ProductId 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 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 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 string

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

    The following arguments are optional:

    Type string

    Type of provisioning artifact. See AWS Docs for valid list of values.

    productId 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 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 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 String

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

    The following arguments are optional:

    type String

    Type of provisioning artifact. See AWS Docs for valid list of values.

    productId 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 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 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 string

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

    The following arguments are optional:

    type string

    Type of provisioning artifact. See AWS Docs for valid list of values.

    product_id 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 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 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 str

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

    The following arguments are optional:

    type str

    Type of provisioning artifact. See AWS Docs for valid list of values.

    productId 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 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 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 String

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

    The following arguments are optional:

    type 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)
    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.
    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 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 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 string

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

    The following arguments are optional:

    Type 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 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 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 string

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

    The following arguments are optional:

    Type 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 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 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 String

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

    The following arguments are optional:

    type 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 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 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 string

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

    The following arguments are optional:

    type 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 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 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 str

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

    The following arguments are optional:

    type 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 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 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 String

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

    The following arguments are optional:

    type 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
    

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the aws Terraform Provider.

    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi