File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
infra/terraform/media_relay Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ Key variables:
2121| ` publish_user ` / ` publish_pass ` | Credentials the SBC uses to publish | ** required** |
2222| ` viewer_user ` / ` viewer_pass ` | Playback credentials (` viewer_user=any ` allows anonymous access) | ` any ` / empty |
2323| ` allowed_cidrs ` | List of CIDR blocks allowed to reach the relay | ` ["0.0.0.0/0"] ` |
24+ | ` key_name ` | EC2 key pair used for SSH access | ` orion ` |
2425| ` existing_eip_allocation_id ` | Allocation ID of an existing Elastic IP to reuse | ` null ` |
2526| ` mediamtx_version ` | Container tag pulled from Docker Hub | ` 1.15.3 ` |
2627| ` tags ` | Extra tags applied to every resource | ` {} ` |
Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ viewer_user = "any"
66viewer_pass = ""
77allowed_cidrs = ["0.0.0.0/0"]
88instance_type = "t3.small"
9+ #key_name = "orion"
910#existing_eip_allocation_id = "eipalloc-0123456789abcdef0"
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ variable "instance_type" {
4949variable "key_name" {
5050 description = " Optional EC2 key pair name for SSH access"
5151 type = string
52- default = null
52+ default = " orion "
5353}
5454
5555variable "vpc_id" {
You can’t perform that action at this time.
0 commit comments