{
    "version": 2,
    "outputCapture": "direct-nodejs",
    "$schema": "http://json-schema.org/schema",
    "cli": "nx",
    "title": "Terraform output executor",
    "description": "Runs terragrunt output commands",
    "type": "object",
    "properties": {
        "name": {
            "type": "string",
            "description": "The name of the output to show"
        },
        "json": {
            "type": "boolean"
        },
        "environment": {
            "type": "string",
            "description": "The environment to deploy",
            "alias": "env"
        },
        "addIpToDefaultStorage": {
            "type": "boolean",
            "description": "Adds a firewall exception for the current ip to the environment keyvault",
            "default": true
        },
        "firewallRetryAttempts": {
            "type": "integer",
            "description": "Number of times to retry adding the firewall exception for the current ip to the environment keyvault",
            "default": 12
        },
        "firewallRetryDelay": {
            "type": "integer",
            "description": "Delay in seconds between firewall retry attempts",
            "default": 5
        }
    },
    "required": [
        "environment"
    ]
}