feat: moved gitea terraform to this repository
This commit is contained in:
27
terraform/output.tf
Normal file
27
terraform/output.tf
Normal file
@@ -0,0 +1,27 @@
|
||||
output "instance_id" {
|
||||
value = aws_instance.gitea.id
|
||||
description = "The instance ID of the Gitea instance."
|
||||
}
|
||||
|
||||
output "ip_address" {
|
||||
value = aws_instance.gitea.private_ip
|
||||
description = "The Gitea IP address."
|
||||
}
|
||||
|
||||
output "boot_region" {
|
||||
value = var.region
|
||||
description = "The region to manipulate the codebase repository boot."
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
output "boot_id" {
|
||||
value = aws_iam_access_key.gitea_boot_key.id
|
||||
description = "The access id to manipulate the codebase repository boot."
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
output "boot_secret" {
|
||||
value = aws_iam_access_key.gitea_boot_key.secret
|
||||
description = "The access secret to manipulate the codebase repository boot."
|
||||
sensitive = true
|
||||
}
|
||||
Reference in New Issue
Block a user