curved-eye-56312
09/14/2022, 10:57 AMPulumi.<stack_name>.yaml
file I want to declare the following object:
<stack_name>:blobContainers:
1:
name: container_name1
accessLevel: Container
2:
name: container_name2
accessLevel: Blob
3:
name: container_name3
accessLevel: Container
I understand that to retrieve this object from my configuration file I need to use the following (using Typescript):
const containers = config.requireObject("blobContainers");
However, when I try to iterate over my object and access name
for example, I am not able to due to the object's type.
What is the correct way to iterate over this object?little-cartoon-10569
09/14/2022, 11:43 PM<stack_name>:blobContainers:
- name: container_name1
accessLevel: Container
- name: container_name2
accessLevel: Blob
- name: container_name3
accessLevel: Container