cookbook:
  name: Tutorial 02 Forms And Environment
  canonical_name: tutorial-02-forms-and-environment
  environment:
    public:
      - TUTORIAL_MODE=guided
    secrets: []
  pages:
    - page: 1
      name: Forms And Environment
      recipes:
        - recipe: Show Form Values
          canonical_name: show-form-values
          description: Validate and print two non-secret form values.
          form:
            - variable: DISPLAY_NAME
              description: A safe display name.
              type: text
              defaults:
                - learner
            - variable: DEPLOYMENT_TIER
              description: Select a non-secret deployment tier.
              type: select
              options:
                - label: Development
                  value: development
                - label: Staging
                  value: staging
                - label: Production
                  value: production
          now:
            steps:
              - step: 1
                name: Read form values
                image: tutorial-forms-environment:dev
                timeout: 1.minute
