From f192d5124ccb1a8d53740623a898fafdbbf6cc90 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Aug 2022 21:26:26 +0200 Subject: [PATCH] sync hub items with community (#438) * sync hub items with community * Delete email_smtp.json Co-authored-by: rubenfiszel Co-authored-by: Ruben Fiszel --- community/resource_types/email_smtp.json | 32 ------------------------ community/resource_types/s3.json | 7 +++++- 2 files changed, 6 insertions(+), 33 deletions(-) delete mode 100644 community/resource_types/email_smtp.json diff --git a/community/resource_types/email_smtp.json b/community/resource_types/email_smtp.json deleted file mode 100644 index 6e05b428bf..0000000000 --- a/community/resource_types/email_smtp.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "workspace_id": "starter", - "name": "email_smtp", - "schema": { - "type": "object", - "$schema": "https://json-schema.org/draft/2020-12/schema", - "required": [ - "host" - ], - "properties": { - "host": { - "type": "string", - "default": "mail.smtpbucket.com", - "description": "SMTP host address" - }, - "port": { - "type": "integer", - "default": 8025, - "description": "port number on which to connect" - }, - "user": { - "type": "string", - "description": "" - }, - "password": { - "type": "string", - "description": "" - } - } - }, - "description": "SMTP connection infos" -} diff --git a/community/resource_types/s3.json b/community/resource_types/s3.json index 3433515afa..99cdaf0d28 100644 --- a/community/resource_types/s3.json +++ b/community/resource_types/s3.json @@ -33,11 +33,16 @@ "secretKey": { "type": "string", "description": "" + }, + "region": { + "type": "string", + "description": "" } }, "required": [ "endPoint", - "bucket" + "bucket", + "region" ], "type": "object" },