diff --git a/community/resource_types/smtp.json b/community/resource_types/smtp.json new file mode 100644 index 0000000000..04a093158b --- /dev/null +++ b/community/resource_types/smtp.json @@ -0,0 +1,32 @@ +{ + "workspace_id": "starter", + "name": "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": "" +}