This message was deleted.
# aws
s
This message was deleted.
n
nvm, think i figured it out…
Copy code
new aws.iot.TopicRule('this_is_not_the_name', {...})
isn’t the same as
Copy code
new aws.iot.TopicRule('this_is_not_the_name', {
    name: 'this_is_the_name',
    ...
})
which has a required
name
in
TopicRule
that i was missing…
h
Yeh, pulumi will add a unique suffix to names unless you override (not sure if thats true in all cases). But that suffix is alwasys
-xxxxx
where
xxxxx
is some hex numbers & letters. I think the hyphen (
-
) used was the problem.
n
right, i just passed the
-
through a regex to replace globally to
_