- role defaults
 - inventory file or script group vars
 - inventory group_vars/all
 - playbook group_vars/all
 
  
    
      This file contains hidden or 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
    
  
  
    
  | AWSTemplateFormatVersion: 2010-09-09 | |
| Resources: | |
| TestLambda: | |
| Type: 'AWS::Lambda::Function' | |
| Properties: | |
| FunctionName: TestLambda | |
| Handler: lambda/index.handler | |
| Role: !GetAtt | |
| - PullMarketsRole | |
| - Arn | 
  
    
      This file contains hidden or 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
    
  
  
    
  | from flask import Flask, request, jsonify | |
| import redis | |
| Redis = redis.StrictRedis(host='localhost', port=6379, db=0, charset="utf-8", decode_responses=True) | |
| app = Flask(__name__) | |
| @app.route("/") | |
| def root(): | 
  
    
      This file contains hidden or 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
    
  
  
    
  | from flask import Flask, request, jsonify | |
| import redis | |
| Redis = redis.StrictRedis(host='localhost', port=6379, db=0, charset="utf-8", decode_responses=True) | |
| app = Flask(__name__) | |
| @app.route("/") | |
| def root(): | 
  
    
      This file contains hidden or 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
    
  
  
    
  | if [ -z "$2" ]; then | |
| echo "Incorrect arguments passed to Action. Please provide file name and name=value pairs to be replaced." 1>&2 | |
| echo "filePath <name1> <value1> <name2> <value2> ... <nameN> <valueN>" 1>&2 | |
| exit 1 | |
| fi | |
| args="$@" | |
| filePath= | |
| echo "Number of parameters passed are $#" | 
      
      Loading
      
  Sorry, something went wrong. Reload?
      Sorry, we cannot display this file.
      Sorry, this file is invalid so it cannot be displayed.
      
    
  
    
      This file contains hidden or 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
    
  
  
    
  | Gerrit version 2.8 | |
| Replication plugin extracted from gerrit.war and installed over ssh | |
| Installation method -> | |
| a) Relevant configs: | |
| /var/lib/gerrit/etc/replication.config | |
| [remote "aricg-compliance"] | |
| url = [email protected]:somerepo/${name}.git |