Hey, can someone show me how I can define a KeyVal...
# typescript
f
Hey, can someone show me how I can define a KeyValuePair array in TS aws ecs container definition, as in the following example container definition? Cheers
Figured it out from searching similar posts and found how secrets are set.
environment: [{
                
name: "SOME_ENV_VARIABLE",
                
value: "This Value"
            
}]