This message was deleted.
# getting-started
s
This message was deleted.
i
example of trying to use it with the CF template:
Copy code
err := cloudformation.NewStack(ctx, "thing", &cloudformation.StackArgs{
			TemplateUrl: pulumi.String(stack_5_3_1),
			Parameters: pulumi.StringMap{
				"Subnets":                   subnetsIDs, // this isn't a valid type for StringMap

			},
		})
oh, I think.. this is the All() use case.
maybe?
hmm
gross? but kinda works?
Copy code
func Join(args []interface{}, sep string) pulumi.StringOutput {
	// gross? but works?
	format := strings.TrimSuffix(strings.Repeat("%s,", len(args)), ",")
	return pulumi.Sprintf(format, args)
}