Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
update generated docs action committed Aug 7, 2024
1 parent ed2b945 commit 5f0c34f
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions docs/resources/aws_cloud_configuration.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_aws_cloud_configuration Resource - terraform-provider-env0"
subcategory: ""
description: |-
configure an AWS cloud account (Cloud Compass)
---

# env0_aws_cloud_configuration (Resource)

configure an AWS cloud account (Cloud Compass)

## Example Usage

```terraform
resource "env0_aws_cloud_configuration" "example" {
name = "example"
account_id = "242345678901"
bucket_name = "a_bucket_name"
regions = ["us-east-1", "us-west-2"]
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `account_id` (String) the AWS account id
- `bucket_name` (String) the CloudTrail bucket name
- `name` (String) name for the cloud configuration for insights
- `regions` (List of String) a list of AWS regions

### Optional

- `prefix` (String) an optional bucket prefix (folder)

### Read-Only

- `health` (Boolean) an indicator if the configuration is valid
- `id` (String) The ID of this resource.

## Import

Import is supported using the following syntax:

```shell
terraform import env0_aws_cloud_configuration.by_id d31a6b30-5f69-4d24-937c-22322754934e
terraform import env0_aws_cloud_configuration.by_name "cloud configuration name"
```

0 comments on commit 5f0c34f

Please sign in to comment.