Because of a timeout issue, terraform failed to create an ec2 instance.
In order to recover from it I have manually removed the ec2 instance from aws console as well as the terraform state file.
However now it tried to recreate
+ aws_iam_instance_profile.server
id: <computed>
arn: <computed>
create_date: <computed>
name: "server-profile"
path: "/"
role: "server-role"
roles.#: <computed>
unique_id: <computed>
Therefore I want to locate it in the aws console and remove it. However I don't know where to find it.
Where can I locate aws_iam_instance_profile.server
?
Roles
. It isaws_iam_instance_profile
, notaws_iam_role
– Tensor