Skip to content

Commit

Permalink
Optional parameters (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
snovikov authored Jun 20, 2023
1 parent 0d4064a commit 4ae9b4d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ CURRENT_DIR = $(PWD)
# -------------------------------------------------------------------------------------------------
# Docker image versions
# -------------------------------------------------------------------------------------------------
TF_VERSION = 1.2.9
TF_VERSION = 1.3.9
FL_VERSION = latest-0.8

FL_IGNORE_PATHS = .git/,.github/,.idea/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Example:

| Name | Version |
|------|---------|
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.2 |
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 |
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 3 |
| <a name="requirement_random"></a> [random](#requirement\_random) | >= 3.1 |

Expand Down Expand Up @@ -94,7 +94,7 @@ No modules.
| <a name="input_log_retention"></a> [log\_retention](#input\_log\_retention) | The amount of days the logs need to be kept | `number` | `30` | no |
| <a name="input_name"></a> [name](#input\_name) | The name to be interpolated, defaults to bastion-ssm-iam | `string` | `"bastion-ssm-iam"` | no |
| <a name="input_security_group_ids"></a> [security\_group\_ids](#input\_security\_group\_ids) | The security group ids which can be given to the bastion instance, defaults to empty | `list(string)` | `[]` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | Tags to be added to the launch configuration for the bastion host, additionally to name tag | <pre>list(object({<br> key = string<br> value = string<br> propagate_at_launch = bool<br> }))</pre> | `[]` | no |
| <a name="input_tags"></a> [tags](#input\_tags) | Tags to be added to the launch configuration for the bastion host, additionally to name tag | <pre>list(object({<br> key = string<br> value = string<br> propagate_at_launch = optional(bool, true)<br> }))</pre> | `[]` | no |

## Outputs

Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ variable "tags" {
type = list(object({
key = string
value = string
propagate_at_launch = bool
propagate_at_launch = optional(bool, true)
}))
description = "Tags to be added to the launch configuration for the bastion host, additionally to name tag"
default = []
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ terraform {
version = ">= 3.1"
}
}
required_version = ">= 1.2"
required_version = ">= 1.3"
}

0 comments on commit 4ae9b4d

Please sign in to comment.