Circleci Can we use multiple workflows for multiple type?

I’m new in circleci. I want to install my infrastructure via terraform after that I also want to trigger my build, deploy and push command for aws side. But workflow does not allow me to use plan_approve_apply and build-and-deploy together in understand one workflow. I also try to create multiple workflows (like below example) for each one but also it didn’t work. How can I call both in single circli config file

My Circleci config yml file:

    version: 2.1
    orbs:
      aws-ecr: circleci/aws-ecr@8.1.0
      aws-ecs: circleci/aws-ecs@2.2.1
    jobs:
      init-plan:
        working_directory: /tmp/project
        docker:
          - image: docker.mirror.hashicorp.services/hashicorp/terraform:light
        steps:
          - checkout
          - run:
              name: terraform init & plan
              command: |
                terraform init
                terraform plan
          - persist_to_workspace:
              root: .
              paths:
                - .
    
      apply:
        docker:
          - image: docker.mirror.hashicorp.services/hashicorp/terraform:light
        steps:
          - attach_workspace:
              at: .
          - run:
              name: terraform
              command: |
                terraform apply 
          - persist_to_workspace:
              root: .
              paths:
                - .
    
      destroy:
        docker:
          - image: docker.mirror.hashicorp.services/hashicorp/terraform:light
        steps:
          - attach_workspace:
              at: .
          - run:
              name: destroy
              command: |
                terraform destroy
          - persist_to_workspace:
              root: .
              paths:
                - .
    workflows:
      version: 2
      plan_approve_apply:
        jobs:
          - init-plan
          - apply:
              requires:
                - init-plan
          - hold-destroy:
              type: approval
              requires:
                - apply
          - destroy:
              requires:
                - hold-destroy
    workflows:                     # didn't work
      build-and-deploy:
        jobs:
          - aws-ecr/build_and_push_image:
              account-url: "${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com"
              repo: "${AWS_RESOURCE_NAME_PREFIX}"
              region: ${AWS_DEFAULT_REGION}
              tag: "${CIRCLE_SHA1}"
          - aws-ecs/deploy-service-update:
              requires:
                - aws-ecr/build_and_push_image
              aws-region: ${AWS_DEFAULT_REGION}
              family: "${AWS_RESOURCE_NAME_PREFIX}-service"
              cluster-name: "${AWS_RESOURCE_NAME_PREFIX}-cluster"
              container-image-name-updates: "container=${AWS_RESOURCE_NAME_PREFIX}-service,image-and-tag=${AWS_ACCOUNT_ID}.dkr.ecr.${AWS_DEFAULT_REGION}.amazonaws.com/${AWS_RESOURCE_NAME_PREFIX}:${CIRCLE_SHA1}"