Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nivleshc/1939901bf6d053e2101879b5fc5160b7 to your computer and use it in GitHub Desktop.

Select an option

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.
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