Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
chore: fix readme variable exemple
Browse files Browse the repository at this point in the history
  • Loading branch information
Tchoupinax committed Jul 25, 2024
1 parent c5c20b3 commit 806f88a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,16 +138,16 @@ self_service:
- my-scripts/environment_management.py
- create
- --name
- { { name } } # this is a variable that will be replaced by the value of the field 'name'
- {{ name }} # this is a variable that will be replaced by the value of the field 'name'
delayed_command:
- command:
- python
- my-scripts/environment_management.py
- delete
- --name
- { { name } }
- {{ name }}
delay:
hours: { { ttl } } # this is a variable that will be replaced by the value of the field 'ttl'
hours: {{ ttl }} # this is a variable that will be replaced by the value of the field 'ttl'
```
In this example, we define a self-service section with a single action called `new-testing-environment`. This action has four fields:
Expand Down

0 comments on commit 806f88a

Please sign in to comment.