Receiving error: component vendoring config file does not exist in the '/workspace/components/terraform/tgw' folder #39
Answered
by
milldr
ron-johnson
asked this question in
Questions & Answers
-
Beta Was this translation helpful? Give feedback.
Answered by
milldr
Feb 13, 2025
Replies: 1 comment 1 reply
-
Please update that workflow like this: vendor:
description: Vendor component dependencies for the network layer.
steps:
+ - command: vendor pull --component tgw/hub
+ - command: vendor pull --component tgw/spoke
- - command: vendor pull --component tgw
- command: vendor pull --component acm
- command: vendor pull --component bastion
- command: vendor pull --component dns-delegated
- command: vendor pull --component dns-primary
- command: vendor pull --component ec2-client-vpn
- command: vendor pull --component vpc Both |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ron-johnson
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please update that workflow like this:
Both
tgw/hub
andtgw/spoke
are nested intgw
. So you can vendor both at the same time with a singlecomponent.yaml
if y…