-
Notifications
You must be signed in to change notification settings - Fork 4.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(servicecatalog): added property productType
for CloudFormationProduct
#33792
base: main
Are you sure you want to change the base?
Changes from all commits
c69be58
946799e
fb29ecd
a74ef1e
291fc9d
678d042
962e07e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,32 @@ import { IBucket } from '../../aws-s3'; | |
import { ArnFormat, IResource, Resource, Stack } from '../../core'; | ||
import { addConstructMetadata } from '../../core/lib/metadata-resource'; | ||
|
||
/** | ||
* The type of product | ||
*/ | ||
export enum ProductType { | ||
/** | ||
* CloudFormation template | ||
*/ | ||
CLOUD_FORMATION_TEMPLATE = 'CLOUD_FORMATION_TEMPLATE', | ||
/** | ||
* created by Amazon Web Services Marketplace | ||
*/ | ||
MARKETPLACE = 'MARKETPLACE', | ||
/** | ||
* Terraform Open Source configuration file | ||
*/ | ||
TERRAFORM_OPEN_SOURCE = 'TERRAFORM_OPEN_SOURCE', | ||
/** | ||
* Terraform Cloud configuration file | ||
*/ | ||
TERRAFORM_CLOUD = 'TERRAFORM_CLOUD', | ||
/** | ||
* External configuration file | ||
*/ | ||
EXTERNAL = 'EXTERNAL', | ||
} | ||
|
||
/** | ||
* A Service Catalog product, currently only supports type CloudFormationProduct | ||
*/ | ||
|
@@ -117,6 +143,12 @@ export interface CloudFormationProductProps { | |
*/ | ||
readonly distributor?: string; | ||
|
||
/** | ||
* The type of the product. | ||
* @default - No type provided | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please describe which type is set by default if When not explicitly setting the default value in CDK, it seems to be preferred by maintainers recently to explicitly describe what behavior occurs as the CloudFormation default, as shown below.
You don't necessarily need to adhere to it, but you might receive such feedback from the maintainers. |
||
*/ | ||
readonly productType?: ProductType; | ||
|
||
/** | ||
* Whether to give provisioning artifacts a new unique identifier when the product attributes or provisioning artifacts is updated | ||
* @default false | ||
|
@@ -201,6 +233,7 @@ export class CloudFormationProduct extends Product { | |
name: props.productName, | ||
owner: props.owner, | ||
provisioningArtifactParameters: this.renderProvisioningArtifacts(props), | ||
productType: props.productType, | ||
replaceProvisioningArtifacts: props.replaceProductVersionIds, | ||
supportDescription: props.supportDescription, | ||
supportEmail: props.supportEmail, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about explaining that it's possible to create Terraform and external products by configuring the
productType
?