29 lines
No EOL
696 B
HCL
29 lines
No EOL
696 B
HCL
output "redis_id" {
|
|
value = stackit_redis_instance.this.id
|
|
description = "Redis instance ID"
|
|
}
|
|
|
|
output "redis_host" {
|
|
value = stackit_redis_instance.this.dashboard_url
|
|
description = "Redis dashboard URL (may contain connection info)"
|
|
}
|
|
|
|
output "redis_username" {
|
|
value = stackit_redis_credential.this.username
|
|
description = "Redis username"
|
|
}
|
|
|
|
output "redis_password" {
|
|
value = stackit_redis_credential.this.password
|
|
description = "Redis password"
|
|
}
|
|
|
|
output "redis_port" {
|
|
value = stackit_redis_credential.this.port
|
|
description = "Redis port"
|
|
}
|
|
|
|
output "redis_uri" {
|
|
value = stackit_redis_credential.this.uri
|
|
description = "Redis URI"
|
|
} |