This message was deleted.
# general
s
This message was deleted.
r
Is this JS? Shouldnt it be
Copy code
environment_variables: [ ... ]
k
For the OP that is Python syntax. Which language are you using?
For JS the syntax should be
Copy code
environment_variables: {
 "key1": "value1",
 "key2": "value2",
}
I think you are confused by the value shape of
environment_variables
in the docs which is using TypeScript
{[key: string]: string}
as you can see it's an object, that it has a key with type of a string and a value of string as well.