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
Creamos una `route table`, y la asociamos a nuestra `VPC`. Para ver la documentación oficial de este recurso, seguir el siguiente enlace [Route tables official Docs](https://docs.aws.amazon.com/vpc/latest/userguide/VPC_Route_Tables.html)
96
96
97
-
```tf
97
+
```ini
98
98
resource "aws_route_table""rtb" {
99
99
vpc_id = aws_vpc.vpc.id
100
100
@@ -109,7 +109,7 @@ En el bloque anidado, podemos especificar un `route` para añadir a la `route ta
109
109
110
110
Por último asociamos nuestra `route table` con una única `subnet`
0 commit comments