We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d5658 commit c388603Copy full SHA for c388603
metadata.yaml
@@ -161,7 +161,7 @@ spec:
161
type:
162
- object
163
- REDIS_HOST: string
164
- REDIS_PORT: number
+ REDIS_PORT: string
165
- name: host
166
description: The IP address of the instance.
167
type: string
outputs.tf
@@ -65,6 +65,6 @@ output "env_vars" {
65
description = "Exported environment variables"
66
value = {
67
"REDIS_HOST" : google_redis_instance.default.host,
68
- "REDIS_PORT" : google_redis_instance.default.port
+ "REDIS_PORT" : tostring(google_redis_instance.default.port)
69
}
70
0 commit comments