1
0
Fork 0
mirror of https://github.com/Loofort/terraform-aws-gitea synced 2024-05-08 23:16:06 +02:00
terraform-aws-gitea/meta.tf
2018-12-16 15:12:43 +03:00

19 lines
385 B
HCL

################# inputs ################
variable "tags" {
description = "A map of tags to add to all resources"
default = {
Project = "gitea"
}
}
# The backend and provider are configured by env variables
provider "aws" {}
terraform {
backend "s3" {}
}
############## outputs #################
output "amazon_domain" {
value = "${aws_instance.host.public_dns}"
}