From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8CBFC20DD51 for ; Thu, 4 Sep 2025 15:15:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998942; cv=none; b=h9JRBkYaemQaj4txP4g/6+vJ+BPX2S9zRfa4RXDtT+5bQGCu26m+lmkSn7s4A2lb7Y2oLJ4YUurLGwUT7oF1DW2ijn6YoVRSLO1DzW8iQY2vke5fx80qy/rJDHHsZ5TdNoWNx5b6sFlgsjl6PmDIQLAP1TmBxPqxlpgTN/IJP40= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756998942; c=relaxed/simple; bh=7mmF9MERY5AtuutSKofS00AkllLWCiHDFsRgVh12WuE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fI7KNHv5WLtnV3FRV3WuI88xoyH0cOwj/44/C5J1hbm9X1q8Azx2XZ83yA5gDyuh/IwA9WlpmV3/OHjDCDRA4VKzFjsR5RiYFIMFWAStZk/PsWLbVb/of3Rey8OVcUl0D7ZmqFvLhLUt0sJKbZkOcLiorrY4sWe9V4xHUipsGAE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Qz1nQ+Ki; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Qz1nQ+Ki" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CF16DC4CEF0; Thu, 4 Sep 2025 15:15:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1756998942; bh=7mmF9MERY5AtuutSKofS00AkllLWCiHDFsRgVh12WuE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Qz1nQ+Ki1KrjaFpyF+ndO1GuQBr66ZwtxVfo1x9QsyovXZY/nXFX3VQdCc5KJ7xDi GnzCJWwCgRulSyX/9DNXQsbL+H46Gbn73A741yvJ3Sr3NaIiGzwhp+k7tDdGjbZOtc sfzBgMODeu5yAw68s9I57oue9zPe4DTz5gJGwhx0pg6iCQR/QZMaqUuFcfFnxRNTu1 bqIeBOh/5vs5akklHScQkZ3HJMsDeIz7C1/plREGTob6ivfNwywsY6SLy57yxtW83p lgEd0b08E3kOBf+q3UNb76Dk62GNH8Gv3cFXuGe7VH+BqMF81q1u7WQUkK1jDmokqd Zs24+FBwYP/Qg== From: Chuck Lever To: Cc: Chuck Lever , Luis Chamberlain Subject: [PATCH v3 26/36] terraform/oci: Clean up the route table resource Date: Thu, 4 Sep 2025 11:15:14 -0400 Message-ID: <20250904151526.1596282-27-cel@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250904151526.1596282-1-cel@kernel.org> References: <20250904151526.1596282-1-cel@kernel.org> Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Chuck Lever Reviewed-by: Luis Chamberlain Signed-off-by: Chuck Lever --- terraform/oci/main.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terraform/oci/main.tf b/terraform/oci/main.tf index 45a4b4bc0c63..15660aa02614 100644 --- a/terraform/oci/main.tf +++ b/terraform/oci/main.tf @@ -103,10 +103,12 @@ resource "oci_core_route_table" "kdevops_route_table" { compartment_id = data.oci_identity_compartments.kdevops_compartment.compartments[0].id display_name = "kdevops route table" vcn_id = one(oci_core_vcn.kdevops_vcn[*].id) + route_rules { destination = "0.0.0.0/0" destination_type = "CIDR_BLOCK" network_entity_id = one(oci_core_internet_gateway.kdevops_internet_gateway[*].id) + route_type = "STATIC" } } -- 2.51.0