Hi All. Has anyone used `[CustomTimeouts]` from `p...
# python
b
Hi All. Has anyone used
[CustomTimeouts]
from
pulumi.*ResourceOptions*
?
g
Yep, you can define them like this:
Copy code
instance = compute.Instance(
    "poc",
    # ...
    opts=pulumi.ResourceOptions(custom_timeouts={"create": "2m"})
)
👍 1
b
I can confirm that it works!