{
	"name": "infra",
	"$schema": "../node_modules/nx/schemas/project-schema.json",
	"projectType": "application",
	"sourceRoot": "infra/src",
	"tags": [],
	"targets": {
		"init": {
			"executor": "nx:run-commands",
			"defaultConfiguration": "staging",
			"options": {
				"cwd": "infra/src",
				"command": "make init"
			},
			"configurations": {
				"staging": {},
				"production": {
					"command": "make init -e STAGE=production"
				}
			}
		},
		"plan": {
			"executor": "nx:run-commands",
			"defaultConfiguration": "staging",
			"options": {
				"cwd": "infra/src",
				"command": "make plan"
			},
			"configurations": {
				"staging": {},
				"production": {
					"command": "make plan -e STAGE=production"
				}
			}
		},
		"apply": {
			"executor": "nx:run-commands",
			"defaultConfiguration": "staging",
			"options": {
				"cwd": "infra/src",
				"command": "make apply"
			},
			"configurations": {
				"staging": {},
				"production": {
					"command": "make apply -e STAGE=production"
				}
			}
		}
	}
}
