I have ini file(env_var.ini) like below
[regionA]
export PROJECT_ID=123
export PROJECT_NAME="project1"
[regionB]
export PROJECT_ID=234
export PROJECT_NAME="project2"
First i want to set env variables(project_id,project_name) which is in regionA, after the completion of some operation , i need to set env variables which is in regionB. How i can achieve this using array or loop something.