From 374da1e14cf5a6a9bdcc4f0c702553247cbede58 Mon Sep 17 00:00:00 2001 From: Jayant Date: Fri, 14 Feb 2025 16:23:46 +0530 Subject: [PATCH 1/3] Add output facets for AWS, Azure, and GCP VPCs --- outputs/aws_vpc/output.facets.yaml | 8 ++++++++ outputs/azure_vpc/output.facets.yaml | 8 ++++++++ outputs/gcp_vpc/output.facets.yaml | 8 ++++++++ 3 files changed, 24 insertions(+) create mode 100644 outputs/aws_vpc/output.facets.yaml create mode 100644 outputs/azure_vpc/output.facets.yaml create mode 100644 outputs/gcp_vpc/output.facets.yaml diff --git a/outputs/aws_vpc/output.facets.yaml b/outputs/aws_vpc/output.facets.yaml new file mode 100644 index 000000000..5de334de9 --- /dev/null +++ b/outputs/aws_vpc/output.facets.yaml @@ -0,0 +1,8 @@ +name: aws_vpc +out: + type: object + title: AWS VPC + description: Outputs from AWS VPC + properties: + attributes: + interfaces: diff --git a/outputs/azure_vpc/output.facets.yaml b/outputs/azure_vpc/output.facets.yaml new file mode 100644 index 000000000..ff0abe5b0 --- /dev/null +++ b/outputs/azure_vpc/output.facets.yaml @@ -0,0 +1,8 @@ +name: azure_vpc +out: + type: object + title: Azure VPC + description: Outputs from Azure VPC + properties: + attributes: + interfaces: diff --git a/outputs/gcp_vpc/output.facets.yaml b/outputs/gcp_vpc/output.facets.yaml new file mode 100644 index 000000000..a07b38316 --- /dev/null +++ b/outputs/gcp_vpc/output.facets.yaml @@ -0,0 +1,8 @@ +name: gcp_vpc +out: + type: object + title: GCP VPC + description: Outputs from GCP VPC + properties: + attributes: + interfaces: From eb3fdac48bd15ec38a050388fc2767c96ce17be2 Mon Sep 17 00:00:00 2001 From: Jayant Date: Fri, 14 Feb 2025 18:32:40 +0530 Subject: [PATCH 2/3] Add outputs for Azure, AWS, and GCP VPCs in index.json --- outputs.index.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/outputs.index.json b/outputs.index.json index 43a14909e..5262eca71 100644 --- a/outputs.index.json +++ b/outputs.index.json @@ -163,5 +163,23 @@ "name": "mongodb_auth_operator", "gitUrl": "https://github.com/Facets-cloud/facets-modules", "relativePath": "./outputs/mongodb_auth_operator/" + }, + { + "name": "azure_vpc", + "gitUrl": "https://github.com/Facets-cloud/facets-modules", + "relativePath": "./outputs/azure_vpc/", + "gitRef": "vpc_outputs" + }, + { + "name": "aws_vpc", + "gitUrl": "https://github.com/Facets-cloud/facets-modules", + "relativePath": "./outputs/aws_vpc/", + "gitRef": "vpc_outputs" + }, + { + "name": "gcp_vpc", + "gitUrl": "https://github.com/Facets-cloud/facets-modules", + "relativePath": "./outputs/gcp_vpc/", + "gitRef": "vpc_outputs" } ] From 9d073326cb34c4634e14bd81ab22c4a52d86a4e8 Mon Sep 17 00:00:00 2001 From: Jayant Date: Mon, 17 Feb 2025 14:04:46 +0530 Subject: [PATCH 3/3] Remove gitRef entries for Azure, AWS, and GCP VPCs in outputs.index.json --- outputs.index.json | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/outputs.index.json b/outputs.index.json index 5262eca71..e9d2ff1ba 100644 --- a/outputs.index.json +++ b/outputs.index.json @@ -167,19 +167,16 @@ { "name": "azure_vpc", "gitUrl": "https://github.com/Facets-cloud/facets-modules", - "relativePath": "./outputs/azure_vpc/", - "gitRef": "vpc_outputs" + "relativePath": "./outputs/azure_vpc/" }, { "name": "aws_vpc", "gitUrl": "https://github.com/Facets-cloud/facets-modules", - "relativePath": "./outputs/aws_vpc/", - "gitRef": "vpc_outputs" + "relativePath": "./outputs/aws_vpc/" }, { "name": "gcp_vpc", "gitUrl": "https://github.com/Facets-cloud/facets-modules", - "relativePath": "./outputs/gcp_vpc/", - "gitRef": "vpc_outputs" + "relativePath": "./outputs/gcp_vpc/" } ]