-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
94 lines (76 loc) · 2.74 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
output "backup_s3_bucket_name" {
value = module.ark_backup.backup_s3_bucket_name
description = "The ID of the S3 bucket created for backups if enabled."
}
output "backup_s3_bucket_arn" {
value = module.ark_backup.backup_s3_bucket_arn
description = "The ARN of the S3 bucket created for backups if enabled."
}
output "ssh_key_name" {
value = module.ark_compute.ssh_key_name
description = "The name of the SSH key generated by Terraform."
}
output "server_using_custom_gameusersettingsini" {
value = var.use_custom_gameusersettings
description = "Is the server using custom GameUserSettings.ini."
}
output "server_using_custom_gameini" {
value = var.use_custom_game_ini
description = "Is the server using custom Game.ini."
}
output "server_is_password_protected" {
value = var.is_password_protected
description = "Is the server password protected."
}
output "join_password" {
value = var.join_password
description = "The server join password required to join."
}
output "max_players" {
value = var.max_players
description = "The configured max players."
}
output "steam_query_port" {
value = var.steam_query_port
description = "The configured steam query port."
}
output "game_client_port" {
value = var.game_client_port
description = "The configured game client port."
}
output "admin_commands_password" {
value = var.server_admin_password
description = "The configured admin command password."
}
output "session_name" {
value = var.ark_session_name
description = "The configured session name."
}
output "custom_ini_s3_bucket_name" {
value = module.ark_compute.custom_ini_s3_bucket_name
description = "The ID of the S3 bucket that was created if use custom ini with s3 was configured."
}
output "custom_gameusersettings_file_name" {
value = module.ark_compute.custom_gameusersettings_file_name
description = "The custom gameusersettings file name that was uploaded to s3 if use custom GUS ini with s3 was configured."
}
output "vpc_id" {
value = module.ark_vpc.vpc_id
description = "The ID of the VPC created by Terraform."
}
output "subnet_id" {
value = module.ark_vpc.subnet_id
description = "The subnet ID of the subnet created by Terraform."
}
output "security_group_id" {
value = module.ark_vpc.security_group_id
description = "The security group ID of the security group created by Terraform."
}
output "ark_server_public_ip" {
value = module.ark_compute.ark_server_public_ip
description = "The public IP address of the Ark server to connect on."
}
output "session_manager_enabled" {
value = module.ark_compute.session_manager_enabled
description = "Is AWS SSM Session Manager enabled or not."
}