Skip to content

Commit c388603

Browse files
committed
Update output value and type for env_vars
1 parent a8d5658 commit c388603

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

metadata.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ spec:
161161
type:
162162
- object
163163
- REDIS_HOST: string
164-
REDIS_PORT: number
164+
REDIS_PORT: string
165165
- name: host
166166
description: The IP address of the instance.
167167
type: string

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,6 @@ output "env_vars" {
6565
description = "Exported environment variables"
6666
value = {
6767
"REDIS_HOST" : google_redis_instance.default.host,
68-
"REDIS_PORT" : google_redis_instance.default.port
68+
"REDIS_PORT" : tostring(google_redis_instance.default.port)
6969
}
7070
}

0 commit comments

Comments
 (0)