# atmos terraform planfile show

Show metadata for a Terraform plan file from the configured storage backend. The component is specified as a positional argument and the stack via `-s`/`--stack`.

> ⚠️ Experimental

## Usage

```shell
atmos terraform planfile show <component> [flags]
```

## Arguments

- **`<component>`**
  Component name to show planfile metadata for (required).

## Flags

- **`--format`**
  Output format: 
  `yaml`
   (default) or 
  `json`
  .
- **`--store`**
  Storage backend to use (default from config).

## Examples

```shell
# Show planfile metadata
atmos terraform planfile show vpc -s dev-us-east-1

# Show in JSON format
atmos terraform planfile show vpc -s dev-us-east-1 --format json

# Show from a specific store
atmos terraform planfile show vpc -s dev-us-east-1 --store s3
```

## Related

- [`atmos terraform planfile list`](/cli/commands/terraform/planfile/list) - List available planfiles
- [`atmos terraform planfile download`](/cli/commands/terraform/planfile/download) - Download a planfile
