Quiz

resource "quiz" "introduction" {
  questions = [
    resource.multiple_choice_question.terraform_workflow,
    resource.single_choice_question.terraform_creator,
  ]

  attempts = 3
  show_hints = true
}

Last updated