Hi. I'm trying to setup error actions for IoT topi...
# general
m
Hi. I'm trying to setup error actions for IoT topic rules, the Pulumi console shows me that everything was successfully updated, But when I go to IoT Rule detail I do not see the error action configured, ¿any idea?, sample code below
Copy code
export const iotRule = new aws.iot.TopicRule("sampleRule", {
    enabled: true,
    sqlVersion: "2016-03-23",
    sql: config.require("query"),
    kinesis: {
        streamName: stream.name,
        roleArn: role.arn,
        partitionKey: '${partitionKey}'
    },
    errorAction: {
        republish: {
            topic: 'stage/iot/errors',
            roleArn: iotErrorRole.arn,
        }
    },
})