forked from Azure/terraform-azurerm-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
38 lines (31 loc) · 1.07 KB
/
outputs.tf
File metadata and controls
38 lines (31 loc) · 1.07 KB
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
output "server_name" {
description = "The name of the PostgreSQL server"
value = "${azurerm_postgresql_server.server.name}"
}
output "server_fqdn" {
description = "The fully qualified domain name (FQDN) of the PostgreSQL server"
value = "${azurerm_postgresql_server.server.fqdn}"
}
output "administrator_login" {
value = "${var.administrator_login}"
}
output "administrator_password" {
value = "${var.administrator_password}"
sensitive = true
}
output "server_id" {
description = "The resource id of the PostgreSQL server"
value = "${azurerm_postgresql_server.server.id}"
}
output "database_ids" {
description = "The list of all database resource ids"
value = ["${azurerm_postgresql_database.dbs.*.id}"]
}
output "firewall_rule_ids" {
description = "The list of all firewall rule resource ids"
value = ["${azurerm_postgresql_firewall_rule.firewall_rules.*.id}"]
}
output "vnet_rule_ids" {
description = "The list of all vnet rule resource ids"
value = ["${azurerm_postgresql_virtual_network_rule.vnet_rules.*.id}"]
}