Multiple Choice

resource "multiple_choice_question" "terraform_workflow" {
	question = "Which stages does the core Terraform workflow consist of?"
	answer = ["write", "plan", "apply"]
	distractors = ["deploy", "email"]

	hints = [
		"First you need to ... the configuration",
		"Then you need to ... the changes",
		"Finally you ... them"
	]
}

Last updated