tall-librarian-49374
12/18/2019, 7:27 AMrhythmic-vegetable-87369
12/18/2019, 9:53 AMrhythmic-vegetable-87369
12/18/2019, 12:37 PMrhythmic-vegetable-87369
12/18/2019, 12:38 PMtall-librarian-49374
12/18/2019, 12:46 PMtall-librarian-49374
12/18/2019, 12:48 PMrhythmic-vegetable-87369
12/19/2019, 3:41 AMrhythmic-vegetable-87369
12/19/2019, 3:41 AMrhythmic-vegetable-87369
12/19/2019, 4:31 AMrhythmic-vegetable-87369
12/19/2019, 4:31 AMdelightful-dawn-43855
12/19/2019, 10:57 AMrhythmic-vegetable-87369
12/24/2019, 4:42 AMwooden-grass-12815
12/26/2019, 12:06 PMwooden-grass-12815
01/04/2020, 9:10 PMDiagnostics:
pulumi:pulumi:Stack (PulumiAppServiceContainer-githubaction):
error: could not find `dotnet` on the $PATH: exec: "dotnet": executable file not found in $PATH
wooden-grass-12815
01/04/2020, 9:10 PMwooden-grass-12815
01/04/2020, 9:11 PMwooden-grass-12815
01/04/2020, 9:12 PMfresh-summer-65887
01/08/2020, 11:48 AMtall-librarian-49374
01/08/2020, 3:24 PMpowerful-football-81694
01/11/2020, 12:56 PMInput<T>
and Output<T>
as they pertain to a C# program.
If resource A takes an Input<string>
and I want to construct that string using a pattern including one or more Output<string>
from resource B, how should I do that?
I assume the following is too naĂŻve:
resourceA.SomeInput = $"{resourceB.FirstOutput}...{resourceB.SecondOutput}";
Is there some string formatter implementation of Output<T>
perhaps?rhythmic-vegetable-87369
01/11/2020, 4:23 PMfast-dinner-32080
01/13/2020, 10:36 PMvar vaultProvider = new Provider("vault",
new Pulumi.Vault.ProviderArgs
{
Address = config.Require("vaultEndpoint"),
AuthLogins = new InputList<ProviderAuthLoginsArgs>
{
new ProviderAuthLoginsArgs
{
Path = $"auth/approle/role/{config.Require("vaultAppRoleName")}/login",
Parameters = new InputMap<string>
{
{"role_id", config.Require("vaultAppRoleId")},
{"secret_id", config.RequireSecret("vaultAppRoleSecretId")}
},
}
}
});
powerful-football-81694
01/15/2020, 6:26 PMOutput<T>
, where T is a string containing a comma-separated list of IP addresses, into multiple resources where each resource takes one of those IP addresses as an input?
Case in point: AppService
exposes PossibleOutboundIpAddresses
as such an output property, and I need to transform that and create one Sql.FirewallRule
for each IP address in that string. Of course I want to keep the chain of inputs-to-outputs intact to not break the dependency tracking etc.
Anyone know how to do this?powerful-football-81694
01/16/2020, 6:13 PMOutput.Format()
if my format string is not a string interpolation inline in code, but instead a composite format string (containing {0}
placeholders) that is fetched from an external source (such as an environment variable)?adventurous-garage-59192
01/20/2020, 12:59 PMOutput<object>
return from RequireOutput
is fine if you're using Output.Format
or related, but isn't so great if you just want to grab it and pass it as-in into some property. The two options seem to be (string)await infra.RequireValueAsync(".....")
or infra.RequireOutput(".....").Apply(x=> (string)x);
.
As a side note, the docs still say that SR isn't available in C# yet.cold-caravan-83486
01/20/2020, 4:39 PMcold-caravan-83486
01/20/2020, 4:50 PMRestApi
, Deployment
, Stage
and Integration
for a Function
- so far I'm getting stuck at " Error creating API Gateway Deployment: BadRequestException: No integration defined for method
status code: 400"rhythmic-vegetable-87369
01/21/2020, 3:52 AMrhythmic-vegetable-87369
01/21/2020, 3:53 AMrhythmic-vegetable-87369
01/21/2020, 3:54 AM