2022-07-21 19:04:02 +00:00
|
|
|
using System.Collections.Generic;
|
2023-03-24 11:43:46 +00:00
|
|
|
using System.Linq;
|
2022-04-25 22:07:25 +00:00
|
|
|
using Pulumi;
|
|
|
|
using Random = Pulumi.Random;
|
|
|
|
|
2022-07-21 19:04:02 +00:00
|
|
|
return await Deployment.RunAsync(() =>
|
2022-04-25 22:07:25 +00:00
|
|
|
{
|
2023-01-04 22:12:40 +00:00
|
|
|
var config = new Config();
|
|
|
|
var configLexicalName = config.Require("cC-Charlie_charlie.😃⁉️");
|
|
|
|
var resourceLexicalName = new Random.RandomPet("aA-Alpha_alpha.🤯⁉️", new()
|
|
|
|
{
|
|
|
|
Prefix = configLexicalName,
|
|
|
|
});
|
2022-07-21 19:04:02 +00:00
|
|
|
|
|
|
|
return new Dictionary<string, object?>
|
2022-04-25 22:07:25 +00:00
|
|
|
{
|
2022-07-21 19:04:02 +00:00
|
|
|
["bB-Beta_beta.💜⁉"] = resourceLexicalName.Id,
|
2024-01-18 22:07:02 +00:00
|
|
|
["dD-Delta_delta.🔥⁉"] = resourceLexicalName.Id,
|
2022-07-21 19:04:02 +00:00
|
|
|
};
|
|
|
|
});
|
2022-04-25 22:07:25 +00:00
|
|
|
|