careful-summer-45848
03/21/2023, 7:53 PMname: my-site
runtime: nodejs
main: ./index.ts
config:
aws:region: us-east-1
domain: <http://robcarr.net|robcarr.net>
tags:
type: array
items:
- production
- staging
// Pulumi.default.yaml
name: default
config:
aws:region: us-east-1
domain: <http://robcarr.net|robcarr.net>
tags:
type: array
items:
- production
- staging
8 errors occurred:
* #/config/tags: oneOf failed
* #/config/tags: expected string, but got object
* #/config/tags: expected integer, but got object
* #/config/tags: expected boolean, but got object
* #/config/tags: expected array, but got object
* #/config/tags: doesn't validate with '/$defs/configTypeDeclaration'
* #/config/tags/items: doesn't validate with '/$defs/configItemsType'
* #/config/tags/items: expected object, but got arraysteep-toddler-94095
03/21/2023, 8:36 PMname: my-site
runtime: nodejs
main: ./index.ts
config:
aws:region: us-east-1
domain: <http://robcarr.net|robcarr.net>
tags:
- production
- staging
careful-summer-45848
03/21/2023, 11:05 PMsteep-toddler-94095
03/22/2023, 12:03 AMpulumi stack tag set <name> <value>
https://www.pulumi.com/docs/reference/cli/pulumi_stack_tag_set/.ts
extension may have to do with the presence of "type": "module"
in your package.json? I think i ran into that in the past and never got it to workcareful-summer-45848
03/22/2023, 2:27 AM