1
0
mirror of synced 2025-12-25 11:03:37 -05:00
Files
docs/data/variables
Ethan Palm d2eaff2d34 [March 24] Security overview beta (#18341)
* Add 'Security Center' product name variable

* Update index with new Security Center category

* Revert "Update index with new Security Center category"

This reverts commit 74aee4b050639626d2b49d914e4ab7b8c0f63ddc.

* Update Code Security index

* Create index.md for Security Center

* Create Security Center reusables

Beta flag and gated feature

* update AE versioning

* Remove "Security Center" from titles and intros

* Remove "security center" from beta flag

* Add images

* Procedures for filtering and sorting

* Incorporate reviewer feedback

* Incorporate reviewer feedback

Three images will need to be updated

* Update images
2021-03-29 09:25:36 -04:00
..
2020-09-27 14:10:11 +02:00
2020-09-27 14:10:11 +02:00
2020-09-27 14:10:11 +02:00
2020-09-27 14:10:11 +02:00
2020-09-27 14:10:11 +02:00
2020-11-04 14:38:40 -05:00

Variables

Variables are short strings of reusable text.

The YAML files in this directory each contain multiple variables.

The path, filename, and keys within each YAML file determine what its path will be in the data object.

For example, given a file data/variables/foo/bar.yml:

# multiple short strings in one file
meaning_of_life: 42

# and they can be nested if needed
nested:
  values:
    too: Yes!

Its values would be accessible as:

{% data foo.bar.meaning_of_life %}

{% data foo.bar.nested.values.too %}