sparse-intern-71089
11/28/2023, 12:58 AMminiature-musician-31262
11/28/2023, 1:56 AM@pulumi/awsx
version 1 -- is that right?miniature-musician-31262
11/28/2023, 1:58 AMimmage: imggWebDev.imageUri
should take care of that. 🤔incalculable-plastic-17510
11/28/2023, 2:20 AMminiature-arm-21874
02/07/2024, 1:28 AMContainer.image repository should be 255 characters or lesswhich i believe is because it's passing in the whole
OutputImpl { __pulumiOutput: true, ...
object as a string instead of waiting for it to resolve to a value. so i've tried the various things you've tried. hard coding the full imageUri works for me though so it has to be not resolving the string as expectedincalculable-plastic-17510
02/07/2024, 2:11 AMincalculable-plastic-17510
02/07/2024, 2:12 AMminiature-arm-21874
02/07/2024, 2:13 AMminiature-arm-21874
02/07/2024, 2:13 AMminiature-arm-21874
02/07/2024, 2:23 AMincalculable-plastic-17510
02/07/2024, 4:26 AMminiature-arm-21874
02/07/2024, 4:29 AMminiature-arm-21874
02/07/2024, 5:26 AMminiature-arm-21874
02/07/2024, 5:28 AMcontainerDefinitions: pulumi
.all([image])
.apply(([image]) => { ...
instead of
containerDefinitions: pulumi
.all([image.imageUri])
.apply(([image]) => { ...
which immediately resolved obviously because image existed and it didn't wait for the imageUri property to exist
🤦♂️miniature-arm-21874
02/07/2024, 5:28 AMincalculable-plastic-17510
02/07/2024, 3:21 PMminiature-musician-31262
02/07/2024, 4:07 PM