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" },