Reputation: 413
I've created my own VPC with Terraform, however some parameters where the resource is created, could not be edited, like
Maybe someone already did the similar, I would be appreciated for any help
P.S. Terraform already created vpc, subnets, route tables, igw, nat .....
Upvotes: 1
Views: 853
Reputation: 238557
I can not find the attribute, which is responsible for route table which is unnamed and uses for local connection (10.0.0.0/16 Local)(Main route table)
You can't edit nor delete 10.0.0.0/16 Local
. Its always present in your route tables, thus there is no attribute to change it.
Also, when I'm creating a EIP it uses ENI (Interface), however it also not in my control
Not sure what do you mean by this. EIP doesn't have ENI by itself. EIP must be attached to an ENI to work. If you attach it to, let's say, NAT gateway, the ENI used is AWS managed, not yours. So you have no control over it.
On the other hand, if you attach EIP to your own ENI for your EC2 instance, you have options to manage the ENI.
Upvotes: 1