Proposal: Configuration as resource
Nobody has claimed this yet.
- Dominant language
- Rust
- Stars
- 523
- Forks
- 75
- Avg merge
- 3d 16h
- Merged PRs (30d)
- 24
Description
Summary of the new feature / enhancement
As an infrastructure engineer,
I want to define a reusable configuration document that my coworkers can specify like a resource in their configuration documents,
So that we can provide an abstraction over a subset of configuration for readability, composability, and maintainability.
This feature would enable similar functionality for DSC as Puppet defined types, enabling users to define reusable "resources" in the form of a configuration document. This would let a user combine several related resource instances into a single definition that can be parameterized and used in different contexts.
In configuration management, users often find themselves reusing a few low-level resources repeatedly for different subsets of configuration. For example, ensuring a specific version of a package is installed, setting the service for that package, and providing some optional configuration overrides for it.
Proposed technical implementation details (optional)
We could extend the definition for a configuration document to indicate that the document is meant to be reusable as a resource. When a configuration document is used as a resource, it's subject to the normal semantics for discovery, versioning, and so on.
The following snippet shows an example of a hypothetical configuration document as a resource. The field names are placeholders for clarity.
$schema: https://aka.ms/dsc/schemas/v3/bundled/config/document.json
manifest:
type: TailspinToys/Service
description: Installs and configures the TSToy service on Windows machines.
version: 1.2.3
author: TailspinToys
tags:
- tstoy
- Windows
parameters:
version:
description: Specifies the version of TSToy to ensure is installed.
type: string
defaultValue: "1.2.3"
packageSource:
description: Specifies the source from which to install the TSToy package.
type: string
defaultValue: winget
updateAutomatically:
description: Indicates whether TSToy should check for updates when it starts.
type: bool
defaultValue: true
updateFrequency:
description: Specifies how often TSToy should check for updates.
type: string
allowedValues:
- daily
- weekly
- monthly
defaultValue: daily
directive:
resourceDiscovery: duringDeployment
variables:
frequency:
daily: 1
weekly: 7
monthly: 30
resources:
- name: Install TSToy
type: Microsoft.WinGet/Package
properties:
version: "[parameters('version')]"
id: tstoy
source: "[parameters('packageSource')]"
- name: TSToy machine settings
type: TailspinToys.Service/Settings
properties:
scope: machine
updateAutomatically: "[parameters('updateAutomatically')]"
updateFrequency: >-
[tryGet(
variables('frequency'),
parameters('updateFrequency')
)]
dependsOn:
- "[resourceId('Microsoft.WinGet/Package','Install TSToy')]"
- name: Enable TSToy service
type: Microsoft.Windows/Service
properties:
name: tstoy
state: running
startMode: automatic
dependsOn:
- "[resourceId('TailspinToys.Service/Settings','TSToy machine settings')]"
In this example, the configuration-document-as-resource metadata is placed under the manifest field. Minimally, users need to give the document a fully qualified type name and version.
While this example is a little contrived, this resource uses a mix of built-in resources (Microsoft.Windows/Service), other public resources (Microsoft.WinGet/Package), and a package published by the same author (TailspinToys.Service/Settings, which is "actually" installed as part of the package). It shows how you can take a relatively complex set of resources to surface a neater resource surface for end users. The alternative option for people would be to develop a resource that handles all of these components together, but that's more fragile and many users won't want to fully author a resource to compose configuration at this relatively low level.
The following snippet shows an instance of this configuration-document resource in an actual configuration:
$schema: https://aka.ms/dsc/schemas/v3/bundled/config/document.json
resources:
- name: Setup TSToy
type: TailspinToys/Service
properties:
updateAutomatically: true
updateFrequency: weekly
Considerations
- We can't perfectly replicate a resource instance schema from the parameter definitions - might be useful to support a
schemafield that applies to the parameters (either in themanifestfield or per-parameter) to clarify validation requirements. In the example above, theversionproperty is just a string that defaults to1.0.0. More correctly it should be a semantic version, but that isn't representable in the current data model. - Unless we add a field to enumerate operations, we have to infer available operations by inspecting the resources defined in the configuration.
- There are further potential complications, especially around using adapted resources, but I think they are resolvable.
- Enabling resources to be developed this way raises the importance of a
dsc config resolvecommand that "expands" the node graph to show the full set of resources that will be applied. - This proposal in some ways mirrors #611, though it's more limited - extendable resources enables you to do relatively complex processing and then hand off all or some of the actual system-modifying logic to another resource. In this model, you're limited to what you can express in a configuration document. I think this proposal still covers numerous use cases.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
The issue names no files or tests. Start by reviewing configuration-document resource discovery and the related #611 proposal, then trace the existing dsc config resolve work. Done would require an agreed design for reusable documents, parameter handling, discovery and versioning, and resource expansion.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- yaml
- Domain
- infrastructure
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Quiet
- Clarity
- Needs clarification
- Newbie friendliness
- 38/100