Configuration as Code via Monaco is made up of a set of projects and a deployment manifest.
Projects are directories (folders) used to logically group API configurations together. An example of a project could be a service where all configurations regarding this service are present in the folder. Projects can consist of multiple files and directories. For more information, see Manage a Monaco project.
Deployment manifests are YAML files that tell the Dynatrace Monaco CLI what projects to deploy and exactly where they should be deployed. For the Dynatrace Monaco CLI to know what to deploy, there has to be a manifest file present.
This file provides details on what to deploy and where to deploy it.
The manifest is saved as a YAML file. It has three top-level keys: manifestVersion, projects, and environmentGroups.
A sample manifest.yaml might look like this:
manifestVersion: 1.0projects:- name: infrapath: shared/infrastructure- name: generalpath: generaltype: groupingenvironmentGroups:- name: devenvironments:- name: test-env-1url:value: https://<YOUR-DT-DEV-ENV-ID>.apps.dynatrace.comauth:token:name: DEV_TOKENoAuth:clientId:name: DEV_CLIENT_IDcientSecret:name: DEV_CLIENT_SECRET- name: test-env-2url:value: https://<YOUR-DT-SPRINT-ENV-ID>.apps.dynatrace.comauth:token:name: SPRINT_TOKENoAuth:clientId:name: SPRINT_CLIENT_IDcientSecret:name: SPRINT_CLIENT_SECRET- name: prodenvironments:- name: prod-env-1url:type: environmentvalue: https://<YOUR-DT-PROD-ENV-ID>.apps.dynatrace.comauth:token:name: PROD_TOKENoAuth:clientId:name: PROD_CLIENT_IDcientSecret:name: PROD_CLIENT_SECRET
The following sections describe each configuration key in detail.
A manifest must contain a manifestVersion as a top-level key. This is a simple string that is used to validate if the currently used version of Monaco can correctly parse the manifest.
Currently, the supported manifest version is 1.0. The release notes will contain details if the manifest is extended and newer versions are released.
All entries under the projects top-level key specify projects to deploy by Monaco. To specify the type of a project, provide the type key in the project item. There are currently two project types:
simplegroupingThis is the default type. All you need to provide is the name and path properties. If no path property is provided, the name will be used as the path.
name can not contain any slash character (/ or \). This explicitly distinguishes it from filesystem paths.path must always use a forward slash (/) as a separator, regardless of the operating system you use (Linux, Windows, Mac). For example:projects:- name: infrapath: shared/infrastructure
Grouping projects offer a simplified way of grouping multiple projects together. The difference between a grouping project and a simple project is that a grouping project will load all sub-folders of a given path as simple projects. You have to specify a name, which will then be used as a prefix for the resulting simple projects. A dot (.) will be used as separator.
For example, given the following file structure:
general/├── infrastructure/└── zones/
The following project definition:
projects:- name: generalpath: generaltype: grouping
will yield two projects:
general.infrastructuregeneral.zonesIf projects are the what, environments are the where configuration for the Dynatrace Monaco CLI. Consider this sample manifest.yaml example. As you can see, every environment has to be part of a group and can only be present in one group.
Environment groups are a mechanism allowing you to target specific environments together when deploying or to overwrite configuration properties for several environments with one override rather than one per environment.
It can be helpful to group and differentiate pre-production and production environments, as shown in the example.
An environment definition consists of three parts: name, url, and auth.
name identifies the environment for monaco. It's a freeform string, but it must be unique.url section specifies the URL of the Dynatrace environment.auth section specifies how to authenticate against the Dynatrace API.The url definition consists of a type and a value field.
You can either specify the environment's URL directly in the manifest as a value:
url:type: valuevalue: https://some-env.apps.dynatrace.com
or as an environment variable to load the URL from:
url:type: environmentvalue: YOUR_URL_ENV_VAR
Access tokens for the Dynatrace Monaco CLI always require at least the following permission to query general information about your environment:
DataExport)—API v1In most cases, you will require an access token with at least these permissions:
DataExport)—API v1ReadConfig)—API v2WriteConfig)—API v2settings.read)—API v2settings.write)—API v2For general information on access token authentication, see Dynatrace API - Tokens and authentication.