Try AWS Native preview for resources not in the classic version.
aws.servicecatalog.ProvisioningArtifact
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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 thetemplate_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}`,
});
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']}")
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.String(fmt.Sprintf("https://%v/%v", exampleAwsS3Bucket.BucketRegionalDomainName, exampleAwsS3Object.Key)),
})
if err != nil {
return err
}
return nil
})
}
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}",
});
});
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());
}
}
resources:
example:
type: aws:servicecatalog:ProvisioningArtifact
properties:
name: example
productId: ${exampleAwsServicecatalogProduct.id}
type: CLOUD_FORMATION_TEMPLATE
templateUrl: https://${exampleAwsS3Bucket.bucketRegionalDomainName}/${exampleAwsS3Object.key}
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 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.
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",
});
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"),
})
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());
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")
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",
});
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
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:
- Product
Id string - Identifier of the product.
- Accept
Language string - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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.
- Disable
Template boolValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - Template
Physical stringId - 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 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 string - Identifier of the product.
- Accept
Language string - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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.
- Disable
Template boolValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - Template
Physical stringId - 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 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 String - Identifier of the product.
- accept
Language String - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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.
- disable
Template BooleanValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - template
Physical StringId - 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 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 string - Identifier of the product.
- accept
Language string - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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.
- disable
Template booleanValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - template
Physical stringId - 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 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 isen
. - 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_ boolvalidation - 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
andDEPRECATED
. The default isDEFAULT
. 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_ strid - 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.
- product
Id String - Identifier of the product.
- accept
Language String - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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.
- disable
Template BooleanValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - template
Physical StringId - 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 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:
- Created
Time string - Time when the provisioning artifact was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Provisioning
Artifact stringId - Provisioning artifact identifier.
- Created
Time string - Time when the provisioning artifact was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Provisioning
Artifact stringId - Provisioning artifact identifier.
- created
Time String - Time when the provisioning artifact was created.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
Artifact StringId - Provisioning artifact identifier.
- created
Time string - Time when the provisioning artifact was created.
- id string
- The provider-assigned unique ID for this managed resource.
- provisioning
Artifact stringId - 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_ strid - Provisioning artifact identifier.
- created
Time String - Time when the provisioning artifact was created.
- id String
- The provider-assigned unique ID for this managed resource.
- provisioning
Artifact StringId - 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.
- Accept
Language string - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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 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.
- Disable
Template boolValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - Product
Id string - Identifier of the product.
- Provisioning
Artifact stringId - Provisioning artifact identifier.
- Template
Physical stringId - 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 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 string - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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 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.
- Disable
Template boolValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - Product
Id string - Identifier of the product.
- Provisioning
Artifact stringId - Provisioning artifact identifier.
- Template
Physical stringId - 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 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 String - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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
. - created
Time 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.
- disable
Template BooleanValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - product
Id String - Identifier of the product.
- provisioning
Artifact StringId - Provisioning artifact identifier.
- template
Physical StringId - 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 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 string - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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
. - created
Time 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.
- disable
Template booleanValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - product
Id string - Identifier of the product.
- provisioning
Artifact stringId - Provisioning artifact identifier.
- template
Physical stringId - 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 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 isen
. - 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_ boolvalidation - 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
andDEPRECATED
. The default isDEFAULT
. 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_ strid - Provisioning artifact identifier.
- template_
physical_ strid - 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.
- accept
Language String - Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). The default value isen
. - 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
. - created
Time 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.
- disable
Template BooleanValidation - 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
andDEPRECATED
. The default isDEFAULT
. 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. - product
Id String - Identifier of the product.
- provisioning
Artifact StringId - Provisioning artifact identifier.
- template
Physical StringId - 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 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
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.
Try AWS Native preview for resources not in the classic version.