Hello im creating VPC but unable to get VPC ID t...
# golang
c
Hello im creating VPC but unable to get VPC ID to string, ID is CustomResourceState Even try to convert Arn its also not converting is type StringOutput Tech Stack we are using Golang Can someone help me with ID() to string and ARN to string
Copy code
vpc, err := ec2.NewVpc(r.ctx, "VPCName", &ec2.VpcArgs{
    CidrBlock:       pulumi.String(cidrBlock),
    InstanceTenancy: pulumi.String("default"),
})