func ConfirmQuota()

in helpers/foundation-deployer/msg/msg.go [112:122]


func ConfirmQuota(sa string, disablePrompt bool) {
	fmt.Println("")
	fmt.Println("# Proceed if you received confirmation of billing quota increase for the service account of stage 4-projects")
	fmt.Printf("# %s \n", sa)
	fmt.Printf("# Quota increase link is: %s\n", quotaURL)
	fmt.Println("")
	if !disablePrompt {
		PressEnter("")
		fmt.Println("")
	}
}