diff --git a/vars-deployment.json b/vars-deployment.json index ca4eac490be182564a8d937ae38e925eec516ed9..906a9151e521d1cf862bad3cc7d6f9e63de533ad 100644 --- a/vars-deployment.json +++ b/vars-deployment.json @@ -1,33 +1,33 @@ { - "project_vars": [ + "template_vars": [ { "name": "ENVIRONMENT", - "description": "Environment of the deployment, contained in domains, subdomains and resources name convention, it will be your unique URL identifier.", + "input_name": "Environment name", + "description": "Environment of the deployment, contained in domains, subdomains and resources name convention, it will be your unique identifier.", "masked": false, "validation_regex_explanation": "Should contain letters only and no capitals, between 3 and 6 characters long.", "validation_regex": "^[a-z]{3,6}$" }, { - "name": "TF_VAR_INSTANCES_COUNT", + "name": "TF_VAR_INSTANCE_COUNT", + "input_name": "Instance count", "description": "Number of instances to create.", "masked": false, "validation_regex_explanation": "Should contain numbers only, between 1 and 2 characters long.", "validation_regex": "^\\d{1,2}$" - }, - { - "name": "TF_VAR_USER_PASSWORD", - "description": "User password for accessing services and instances.", - "masked": true, - "generation_type": "password", - "validation_regex_explanation": "Should contain at least 1 number, 1 capital letter and 12 characters. Please consider using a password manager.", - "validation_regex": "^(?=.*[a-zA-Z])(?=.*\\d)[A-Za-z\\d]{12,30}$" } ], - "project_vars_database": [ + "project_vars": [ { "name": "OWNER_ID", "description": "ID of the project owner.", "masked": false + }, + { + "name": "TF_VAR_USER_PASSWORD", + "description": "User password for accessing services and instances.", + "masked": true, + "generation_type": "password" } ] }