Created
September 13, 2025 09:08
-
-
Save nivleshc/1939901bf6d053e2101879b5fc5160b7 to your computer and use it in GitHub Desktop.
This gist contains code from the file variables.tf inside the product-s3-bucket folder, which is part of the blog-aws-service-catalog-for-terraform-products repository.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| variable "portfolio_id" { | |
| type = string | |
| description = "The id of the Service Catalog Portfolio to attach this Service Catalog Product to" | |
| } | |
| variable "artifacts_s3_bucket_name" { | |
| type = string | |
| description = "The name of the artifacts s3 bucket" | |
| } | |
| variable "artifacts_s3_bucket_key" { | |
| type = string | |
| description = "The location inside the artifacts s3 bucket to store the product files in" | |
| } | |
| variable "artifacts_s3_bucket_kms_cmk_arn" { | |
| type = string | |
| description = "The arn of the KMS CMK used to encrypt the artifacts s3 bucket" | |
| } | |
| variable "central_lambda_function_arn" { | |
| type = string | |
| description = "The ARN of the Central Lambda Function" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment