Pluralith / pluralith-cli

A tool for Terraform state visualisation and automated generation of infrastructure documentation
https://www.pluralith.com
Mozilla Public License 2.0
789 stars 51 forks source link

I don't think `route53` and `aws_route` should use the same icon. #117

Open codnstj opened 1 year ago

codnstj commented 1 year ago

I have configured these resources as follows.

resource "aws_route" "public_to_igw" {
  route_table_id = aws_route_table.public.id
  destination_cidr_block = "0.0.0.0/0"
  gateway_id = aws_internet_gateway.igw.id
}

This Resource for creating routing table entries (paths) in the VPC routing table. https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/route

However, in the architecture, it is marked with the same icon as route53, which does not seem appropriate. What do you think? image

For your information, I did not configure route53, and the above code and its resources are the same.

And I think you need a nice issue template. This is just my idea :)

thank you for reading