You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,9 +59,11 @@ module "bastion" {
59
59
| Name | Description | Type | Default | Required |
60
60
|------|-------------|:----:|:-----:|:-----:|
61
61
| auto_scaling_group_subnets | List of subnet were the Auto Scalling Group will deploy the instances | list | - | yes |
62
-
|bastion_amis|| map|`<map>`| no |
62
+
|allow_ssh_commands|Allows the SSH user to execute one-off commands. Pass 'True' to enable. Warning: These commands are not logged and increase the vulnerability of the system. Use at your own discretion. | string|""| no |
63
63
| bastion_host_key_pair | Select the key pair to use to launch the bastion host | string | - | yes |
64
64
| bastion_instance_count | Count of bastion instance created on VPC | string |`1`| no |
65
+
| bastion_launch_configuration_name | Bastion Launch configuration Name, will also be used for the ASG | string |`lc`| no |
66
+
| bastion_ami | The AMI that the Bastion Host will use. If not supplied, the latest Amazon2 AMI will be used. | string | `` | no |
65
67
| bastion_record_name | DNS record name to use for the bastion | string | `` | no |
66
68
| bucket_name | Bucket name were the bastion will store the logs | string | - | yes |
67
69
| bucket_force_destroy | On destroy, bucket and all objects should be destroyed when using true | string | false | no |
description="Additional scripting to pass to the bastion host. For example, this can include installing postgresql for the `psql` command."
114
-
type=string
115
-
default=""
120
+
type=string
121
+
default=""
122
+
}
123
+
124
+
variable"allow_ssh_commands" {
125
+
description="Allows the SSH user to execute one-off commands. Pass 'True' to enable. Warning: These commands are not logged and increase the vulnerability of the system. Use at your own discretion."
0 commit comments