# First plan

This lab uses the built-in `terraform_data` resource. It has no cloud resource,
provider block, AWS credentials, or third-party provider download.

From the repository root, run it with one CLI from the [course compatibility contract](../../COMPATIBILITY.md):

```bash
cd learn-terraform/labs/01-first-plan
terraform init
terraform plan
```

or:

```bash
cd learn-terraform/labs/01-first-plan
tofu init
tofu plan
```

The plan should show one `terraform_data.welcome` resource to add and the
`message` output. Do not run `apply` for this first plan.
