plain-parrot-21984
03/24/2023, 12:21 PM"Resource": "{0xc0001a6b60}"
. Looking at the example on https://www.pulumi.com/registry/packages/aws-native/api-docs/stepfunctions/statemachine/ the DefinitionString should be a string as the name implies. I chose to define the state in a separate variable first, because hard coding the Arn like in the example isn't really feasible. How can I supply the correct Arn to the definition instead of the memory address?ctx.Export("pingFunctionArn", pingFunction.Arn)
I get the correct Arn of the pingFunction ...pingStateMachineDefinition := fmt.Sprintf
with
pingStateMachineDefinition := pulumi.Sprintf
it works :ham-dance:salmon-gold-74709
03/27/2023, 11:22 AMplain-parrot-21984
03/27/2023, 11:29 AM