-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
``` |