This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix iam permissions to access session recordings (#28)
Also adjusted variable defaults As per gravitational/teleport#3095
- Loading branch information
1 parent
3c65424
commit a20d2bf
Showing
3 changed files
with
12 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,9 +103,9 @@ These are the requirements to apply this module: | |
| allowed_web_cidr_blocks | CIDR blocks that are allowed to access the web interface of the `proxy` server | list(string) | `["0.0.0.0/0"]` | no | | ||
| ami_id | AMI id for the EC2 instance | string | `""` | no | | ||
| environment | The environment where this setup belongs to. Only for naming reasons | string | - | yes | | ||
| instance_type | Instance type for the EC2 instance | string | `"t2.small"` | no | | ||
| key_name | SSH key name for the EC2 instance | string | - | yes | | ||
| letsencrypt_email | Email to use to register to letsencrypt | string | `"[email protected]"` | no | | ||
| instance_type | Instance type for the EC2 instance | string | `"t3.small"` | no | | ||
| key_name | SSH key name for the EC2 instance | string | `null` | no | | ||
| letsencrypt_email | Email to use to register to letsencrypt | string | - | yes | | ||
| project | A project where this setup belongs to. Only for naming reasons | string | - | yes | | ||
| r53_zone | The Route53 zone where to add the Teleport DNS record | string | - | yes | | ||
| root_vl_delete | Whether the root volume of the EC2 instance should be destroyed on instance termination | bool | `true` | no | | ||
|
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 |
---|---|---|
|
@@ -16,6 +16,7 @@ variable "subnet_id" { | |
variable "key_name" { | ||
type = string | ||
description = "SSH key name for the EC2 instance" | ||
default = null | ||
} | ||
|
||
variable "r53_zone" { | ||
|
@@ -44,13 +45,12 @@ variable "teleport_dynamodb_table" { | |
variable "instance_type" { | ||
type = string | ||
description = "Instance type for the EC2 instance" | ||
default = "t2.small" | ||
default = "t3.small" | ||
} | ||
|
||
variable "letsencrypt_email" { | ||
type = string | ||
description = "Email to use to register to letsencrypt" | ||
default = "[email protected]" | ||
} | ||
|
||
variable "teleport_log_output" { | ||
|