Go Back
Test environment variables
Publisher
:
Run In Lingk
Description
This recipe demonstrates how to update the environment variables from a static json.
Browse the knowledge base
Twitter
E-Mail
# _____ _ _____ __ # | __ \ (_) |_ _| / _| # | |__) |___ ___ _ _ __ ___ | | _ __ | |_ ___ # | _ // _ \/ __| | '_ \ / _ \ | | | '_ \| _/ _ \ # | | \ \ __/ (__| | |_) | __/ _| |_| | | | || (_) | # |_| \_\___|\___|_| .__/ \___| |_____|_| |_|_| \___/ # | | # |_| # Project Name - TEST ENVIRONMENT VARIABLES # Recipe URL - https://app.lingk.io/a/10932/tf/17908 # Description - # This recipe demonstrates how to update the environment variables from a static json # Industry - Higher Ed # Business Process - Graduate Reporting # Systems - # Connectors - JSON # Data Flows - Single Direction # Connection Type - JSON # Add Recipe notes / Change log information here! # _____ _ # / ____| | | # | | ___ _ __ _ __ ___ ___| |_ ___ _ __ ___ # | | / _ \| '_ \| '_ \ / _ \/ __| __/ _ \| '__/ __| # | |___| (_) | | | | | | | __/ (__| || (_) | | \__ \ # \_____\___/|_| |_|_| |_|\___|\___|\__\___/|_| |___/ # # CONNECTORS specify what data will be pulled into the in-memory database during processing connectors: # JSON Setup - https://help.lingk.io/en/articles/74-json-connector-reference ###### Start: JSON Connectors ####### - name: UpdateEnvVars type: json properties: jsonObject: > [ { "password": "myPassw0rd123!", "username": "mUsern4mE123!" } ] - name: useEnvVars type: json properties: jsonObject: > [ { "password": "pw is {{env.vars.password}}", "username": "username is {{env.vars.username}}" } ] ###### End: JSON Connectors ####### # _____ _ _ _ # / ____| | | | | | # | (___ | |_ __ _| |_ ___ _ __ ___ ___ _ __ | |_ ___ # \___ \| __/ _` | __/ _ \ '_ ` _ \ / _ \ '_ \| __/ __| # ____) | || (_| | || __/ | | | | | __/ | | | |_\__ \ # |_____/ \__\__,_|\__\___|_| |_| |_|\___|_| |_|\__|___/ # STATEMENTS specify how the data should be processed while in memory statements: #******************************************************************** D I S C L A I M E R *********************************************************************************************** # * # Note that in an effort to keep recipes optimized for DPH (Data Processing Hours), print statements should be commented out after development has concluded for a recipe. * # For more information on DPH optimization, please visit the following help article - https://help.lingk.io/en/articles/212-minimizing-data-processing-hours-on-the-lingk-platform * # * #******************************************************************** D I S C L A I M E R *********************************************************************************************** # print EnvVars before update #- statement: PRINT env.vars #- statement: PRINT useEnvVars # Update EnvVars - statement: UPDATE UpdateEnvVars INTO env.vars # Print env.vars after update #- statement: PRINT env.vars #- statement: PRINT useEnvVars # Add more statements to convert, join, aggregrate, transform, and integrate your data
SFTP Tasks
Simple SFTP Reader/Writer