34 lines
880 B
HCL
34 lines
880 B
HCL
output "instance_id" {
|
|
value = aws_instance.this.id
|
|
description = "The instance ID of the Gitea instance."
|
|
}
|
|
|
|
output "ip_address" {
|
|
value = aws_instance.this.private_ip
|
|
description = "The Gitea IP address."
|
|
}
|
|
|
|
output "boot_region" {
|
|
value = var.aws_region
|
|
description = "The region to manipulate the codebase repository boot."
|
|
sensitive = true
|
|
}
|
|
|
|
output "boot_id" {
|
|
value = module.boot_user.iam_access_key_id
|
|
description = "The access id to manipulate the codebase repository boot."
|
|
sensitive = true
|
|
}
|
|
|
|
output "boot_secret" {
|
|
value = module.boot_user.iam_access_key_secret
|
|
description = "The access secret to manipulate the codebase repository boot."
|
|
sensitive = true
|
|
}
|
|
|
|
output "full_domain" {
|
|
value = "${var.subdomain}.${var.domain}"
|
|
description = "The domain of the Gitea instance."
|
|
sensitive = true
|
|
}
|