From a8d8af022ca2310285b8f0de3d16915e5c01ec77 Mon Sep 17 00:00:00 2001 From: loshan20011 Date: Mon, 6 Jan 2025 11:41:08 +0530 Subject: [PATCH 1/2] Add transit_gateway_route_table_id output to Transit-Gateway-Route-Table module --- modules/aws/Transit-Gateway-Route-Table/outputs.tf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 modules/aws/Transit-Gateway-Route-Table/outputs.tf diff --git a/modules/aws/Transit-Gateway-Route-Table/outputs.tf b/modules/aws/Transit-Gateway-Route-Table/outputs.tf new file mode 100644 index 0000000..cbedbca --- /dev/null +++ b/modules/aws/Transit-Gateway-Route-Table/outputs.tf @@ -0,0 +1,14 @@ +# ------------------------------------------------------------------------------------- +# +# Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). All Rights Reserved. +# +# This software is the property of WSO2 LLC. and its suppliers, if any. +# Dissemination of any information or reproduction of any material contained +# herein in any form is strictly forbidden, unless permitted by WSO2 expressly. +# You may not alter or remove any copyright or other notice from copies of this content. +# +# -------------------------------------------------------------------------------------- + +output "transit_gateway_route_table_id" { + value = aws_ec2_transit_gateway_route_table.ec2_transit_gateway_route_table.id +} From ecd53f9e939c97d6ed984ff0f45a25a5c443c82d Mon Sep 17 00:00:00 2001 From: loshan20011 Date: Mon, 6 Jan 2025 17:16:52 +0530 Subject: [PATCH 2/2] Update license header in outputs.tf for Transit-Gateway-Route-Table module --- .../Transit-Gateway-Route-Table/outputs.tf | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/modules/aws/Transit-Gateway-Route-Table/outputs.tf b/modules/aws/Transit-Gateway-Route-Table/outputs.tf index cbedbca..59a0130 100644 --- a/modules/aws/Transit-Gateway-Route-Table/outputs.tf +++ b/modules/aws/Transit-Gateway-Route-Table/outputs.tf @@ -1,11 +1,20 @@ # ------------------------------------------------------------------------------------- # -# Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). All Rights Reserved. +# Copyright (c) 2025, WSO2 LLC. (https://www.wso2.com) All Rights Reserved. # -# This software is the property of WSO2 LLC. and its suppliers, if any. -# Dissemination of any information or reproduction of any material contained -# herein in any form is strictly forbidden, unless permitted by WSO2 expressly. -# You may not alter or remove any copyright or other notice from copies of this content. +# WSO2 LLC. licenses this file to you under the Apache License, +# Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. # # --------------------------------------------------------------------------------------