Skip to content

DbInstances

The dbInstances section allows you to define which database instance types will be used for the application data repositories.

Fields

A dbInstance contains the following fields to be defined:

Name

The name of dbInstance to be created.

Requirements Rules:

  • Is Required;
  • Must not be a Reserved Keyword;
  • Must start with a letter;
  • Must contains only letters, numbers and the underline char ('_');
  • Max length of 50 chars

Example:

1
2
DbInstances:
- Name: My_First_DbInstance


Type

The type of database instance.

Possible types are:

  • PostgreSql;
  • SqlServer;
  • MySql;
  • MongoDb

Requirements Rules:

  • Is Required;
  • Must be an Allowed valid type, according to the types informed above

Example:

1
2
3
DbInstances:
- Name: My_First_DbInstance
  Type: PostgreSql


Back to top