Hello, trying to import AWS lighsail StaticIp to p...
# aws
w
Hello, trying to import AWS lighsail StaticIp to pulumi as existting resouce (imported a few things before and it works) but something is not ok. Pulumi cannot import that IP. Looks like AWS API request requirements is not fullfilled. Here is pulumi code:
Copy code
const staticIp = new aws.lightsail.StaticIp(
  "my-static-ip",
  {
    name: "my-static-ip"
  },
  {
    import: "my-static-ip",
  }
);
and here is output from pulumi:
Copy code
{
      RespMetadata: {
        StatusCode: 400,
        RequestID: "foo-baar"
      },
      Code_: "MissingParams",
      Message_: "These parameters are required: staticIpName"
    }
Is it some way how to import that IP?