Add postgresql provider
This commit is contained in:
parent
feab7c6ed8
commit
43baf205dc
12 changed files with 221 additions and 107 deletions
11
output.tf
11
output.tf
|
@ -14,6 +14,17 @@ output "hosts" {
|
|||
}
|
||||
}
|
||||
|
||||
output "postgresql_service_roles" {
|
||||
value = postgresql_role.service_roles
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
output "postgresql" {
|
||||
value = {
|
||||
"host" = var.postgresql_host
|
||||
"port" = var.postgresql_port
|
||||
}
|
||||
}
|
||||
|
||||
output "scaleway_service_keys" {
|
||||
value = scaleway_iam_api_key.service_keys
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue