forked from ricardoteix/terraform-zabbix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
50 lines (37 loc) · 908 Bytes
/
output.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
# Exibindo dados no console após criaçao
output "projeto-id" {
value = aws_instance.projeto.id
}
output "projeto-dns" {
value = aws_instance.projeto.public_dns
}
output "projeto-ip" {
value = aws_instance.projeto.public_ip
}
output "elb-dns" {
value = var.has-domain ? aws_lb.projeto-elb[0].dns_name : null
}
output "projeto-rds-nome-banco" {
value = var.rds-nome-banco
}
output "projeto-rds-nome-usuario" {
value = var.rds-nome-usuario
}
output "projeto-rds-nome-senha" {
value = var.rds-senha-usuario
}
output "projeto-rds-dns" {
value = aws_db_instance.projeto-rds.domain
}
output "projeto-rds-host" {
value = aws_db_instance.projeto-rds.address
}
output "server" {
value = "http://${aws_instance.projeto.public_dns}/info.php"
}
output "projeto-user-data-script" {
value = data.template_file.projeto-user-data-script.rendered
}
output "domain" {
value = var.domain
}