Skip to content

Commit

Permalink
Ensure all variable attributes are sorted alphabetically
Browse files Browse the repository at this point in the history
This mainly brings the Terraform configuration into alignment with the
Packer configuration.
  • Loading branch information
mcdonnnj committed Oct 27, 2023
1 parent 222a8b6 commit 96655af
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions terraform-post-packer/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
# ------------------------------------------------------------------------------

variable "extraorg_account_ids" {
type = list(string)
description = "A list of AWS account IDs corresponding to \"extra\" accounts with which you want to share this AMI (e.g. [\"123456789012\"]). Normally this variable is used to share an AMI with accounts that are not a member of the same AWS Organization as the account that owns the AMI."
default = []
description = "A list of AWS account IDs corresponding to \"extra\" accounts with which you want to share this AMI (e.g. [\"123456789012\"]). Normally this variable is used to share an AMI with accounts that are not a member of the same AWS Organization as the account that owns the AMI."
type = list(string)
}

variable "recent_ami_count" {
type = number
description = "The number of most-recent AMIs for which to grant launch permission (e.g. \"3\"). If this variable is set to three, for example, then accounts will be granted permission to launch the three most recent AMIs (or all most recent AMIs, if there are only one or two of them in existence)."
default = 12
description = "The number of most-recent AMIs for which to grant launch permission (e.g. \"3\"). If this variable is set to three, for example, then accounts will be granted permission to launch the three most recent AMIs (or all most recent AMIs, if there are only one or two of them in existence)."
type = number
}

0 comments on commit 96655af

Please sign in to comment.