You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to add new outputs in this module, for default route table ID, Name, and CIDR of the VPC.
_ Not mandatory, but it could be useful , to use these outputs with another resources _
output "default_rtb_id" {
description = "id of the VPC route table (default)"
value = data.flexibleengine_vpc_route_table.default.id
}
output "default_rtb_name" {
description = "Name of the VPC route table (default)"
value = data.flexibleengine_vpc_route_table.default.name
}
output "vpc_cidr" {
description = "CIDR of the created VPC"
value = var.vpc_cidr
}
The text was updated successfully, but these errors were encountered:
Hi,
I would like to add new outputs in this module, for default route table ID, Name, and CIDR of the VPC.
_ Not mandatory, but it could be useful , to use these outputs with another resources _
In main.tf , we could add this :
Then in outputs.tf :
The text was updated successfully, but these errors were encountered: