-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Create simple environment variable example
This example shows a simple way to set static environment variables in your environment. Signed-off-by: Alex Hughes <[email protected]>
- Loading branch information
Showing
2 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
samples/v2023-09/environment_templates/environment-variables.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | ||
# | ||
# ---- | ||
# Demonstrates | ||
# ---- | ||
# Setting static environment variables using the `variables` section | ||
# of your environment template. | ||
# | ||
# ---- | ||
# Requirements | ||
# ---- | ||
# | ||
# ----- | ||
# Contributors to this template: | ||
# Alex Hughes (https://github.com/Ahuge) | ||
|
||
specificationVersion: environment-2023-09 | ||
environment: | ||
name: StaticEnvironmentVariables | ||
description: > | ||
Sets two static environment variables easily in the environment template. | ||
variables: | ||
ADSKFLEX_LICENSE_FILE: "@192.168.1.1" | ||
foundry_LICENSE: "[email protected]" | ||
|