fast-vr-6049
07/27/2023, 10:19 PMStringBuilder
with Output<string>
objects? I'm trying to create a large string using a mix of `string`s and `Output<string>`s, and I'm scratching my head on how to make use of StringBuilder
for this purposecolossal-plastic-81954
07/28/2023, 6:54 AMechoing-dinner-19531
07/28/2023, 9:04 AMfast-vr-6049
07/31/2023, 7:03 PM.conf
file). Assembling all of these secrets gives me one large Output<string>
. So far, so good. However, the Source
parameter of the Blob
resource accepts an Input<AssetOrArchive>
. I want to put this big Output<string>
into a StringAsset
object (which inherits AssetOrArchive
via Asset
), but the only type it accepts is string
, not Output<string>
. If I construct this StringAsset
inside an Output.Apply
and get an Output<StringAsset>
, Blob's Source
parameter rejects it. It states that it cannot convert an Output<StringAsset>
into Input<AssetOrArchive>
, despite the types being completely compatible from what I can tell. Am I doing something wrong here, or have I run into a bug? If I'm not doing something wrong, this would suggest to me that there's currently no way to put an Output<T>
into an Azure Blob.echoing-dinner-19531
08/01/2023, 7:51 AMfast-vr-6049
08/01/2023, 4:26 PM