{
    "$schema": "http://json-schema.org/schema",
    "cli": "nx",
    "$id": "AddProjectEnvironment",
    "title": "",
    "type": "object",
    "properties": {
        "projectName": {
            "type": "string",
            "description": "The name of terraform project to add the environment to.",
            "alias": "p",
            "$default": {
                "$source": "projectName"
            },
            "x-prompt": "What is the name of the terraform project you want to add the env to?"
        },
        "environmentName": {
            "type": "string",
            "description": "The name of the environment to add.",
            "alias": "e",
            "x-prompt": "What is the name of the environment you want to add?"
        }
    },
    "required": [
        "projectName",
        "environmentName"
    ]
}