I am using Diagrams that pulls AWS resource information from a .txt file. This file contains resource details including IP address, region, etc. How can i change the below code to reflect the resource additional info as well in diagram? Any help is appreciated. Thanks!!
diagram.py
from diagrams import Diagram
from diagrams.aws.compute import EC2
from diagrams.aws.database import RDS
from diagrams.aws.network import ELBwith Diagram(“Web Service”, show=False):
ELB(“lb”) >> EC2(“web”) >> RDS(“userdb”)
I explored the Diagram docs and searched in ChatGPT, but couldn’t find any solution.
ilikegalaxy kumar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.