-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ec2a5e
commit 87e40f9
Showing
4 changed files
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
variable "username" { | ||
description = "Username clients use." | ||
description = "Username clients use." | ||
} | ||
|
||
variable "password" { | ||
description = "Password clients use." | ||
description = "Password clients use." | ||
} | ||
|
||
variable "munki_s3_bucket" { | ||
description = "The name of your s3 Bucket" | ||
description = "The name of your s3 Bucket" | ||
} | ||
|
||
variable "prefix" { | ||
description = "Prefix before lambda and IAM names to ensure uniqueness in your account." | ||
default = "munki" | ||
} | ||
|
||
variable "price_class" { | ||
default = "PriceClass_100" | ||
description = "The price class your CloudFront Distribution should use." | ||
default = "PriceClass_100" | ||
description = "The price class your CloudFront Distribution should use." | ||
} |