我正在尝试使用 terraform 在 OCI 中现有的默认路由表中创建规则。
基本上我正在尝试为互联网网关添加一个规则,以便我可以使用 ssh 访问它。不确定,但我无法访问 TCP,直到我没有在默认表中添加规则,新表对我不起作用..
但在 OCI 提供程序中,该选项仅可用于使用规则创建新路由表,而不是在现有/默认路由表中添加规则
我只能在 oci 提供程序中找到以下路由表选项,其余的属于 DRG。
https://registry.terraform.io/providers/hashicorp/oci/latest/docs/resources/core_route_table
我目前正在使用以下 terraform 代码:
resource "oci_core_internet_gateway" "test_internet_gateway" {
#Required
compartment_id = var.compartment_ocid
vcn_id = oci_core_vcn.test_vcn.id
}
resource "oci_core_route_table" "test_route_table" {
#Required
compartment_id = var.compartment_ocid
vcn_id = oci_core_vcn.test_vcn.id
#display_name = "Default Route Table for xyz"
route_rules {
#Required
network_entity_id = oci_core_internet_gateway.test_internet_gateway.id
#cidr_block = "0.0.0.0/0"
destination = "0.0.0.0/0"
}
}
任何解决方法或解决方案都会有所帮助!!!!