# juju_application (Data Source)

A data source that represents a single Juju application deployment from a charm.

## Example Usage

```terraform
data "juju_application" "this" {
  name       = juju_application.this.name
  model_uuid = juju_model.model.uuid
}
```

<!-- schema generated by tfplugindocs -->

## Schema

### Required

- `model_uuid` (String) The uuid of the model where the application is deployed.
- `name` (String) Name of the application.

### Read-Only

- `machines` (Set of String) The machines on which the application’s units are placed.
- `unit_numbers` (Set of String) The numbers of the units deployed for this application. Ex. [0,1,2]
