Created
January 17, 2020 16:19
-
-
Save hervekhg/7d46c8a15a29a130a36c492169b56bc4 to your computer and use it in GitHub Desktop.
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 "lambda_s3_bucket" { | |
type = string | |
default = "BUCKET-THAT-CONTAIN-LAMBDAZIPCODE" | |
} | |
variable "kms_key_id" { | |
type = string | |
default = "KMSKEY-ARN3" | |
} | |
variable "cron_schedule_enforce_bucket_encryption" { | |
type = string | |
default = "cron(0 11,19 ? * * *)" | |
} | |
variable "sns_topic_arn" { | |
type = string | |
default = "SNSTOPICARN" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment