Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Best Practices - Updated access keys in documentation examples #34447

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class MyConvertedCode(TerraformStack):
Using `terraform import`, import `aws_lightsail_bucket_access_key` using the `id` attribute. For example:

```console
% terraform import aws_lightsail_bucket_access_key.test example-bucket,AKIA47VOQ2KPR7LLRZ6D
% terraform import aws_lightsail_bucket_access_key.test example-bucket,AKIAIOSFODNN7EXAMPLE
```

<!-- cache-key: cdktf-0.19.0 input-4987b702ac9d88a7d12a903a50c895eccdf400c8ee70bccc957c21e050e1eb7f -->
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class MyConvertedCode extends TerraformStack {
Using `terraform import`, import `awsLightsailBucketAccessKey` using the `id` attribute. For example:

```console
% terraform import aws_lightsail_bucket_access_key.test example-bucket,AKIA47VOQ2KPR7LLRZ6D
% terraform import aws_lightsail_bucket_access_key.test example-bucket,AKIAIOSFODNN7EXAMPLE
```

<!-- cache-key: cdktf-0.19.0 input-4987b702ac9d88a7d12a903a50c895eccdf400c8ee70bccc957c21e050e1eb7f -->
4 changes: 2 additions & 2 deletions website/docs/r/lightsail_bucket_access_key.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashico
```terraform
import {
to = aws_lightsail_bucket_access_key.test
id = "example-bucket,AKIA47VOQ2KPR7LLRZ6D"
id = "example-bucket,AKIAIOSFODNN7EXAMPLE"
}
```

Using `terraform import`, import `aws_lightsail_bucket_access_key` using the `id` attribute. For example:

```console
% terraform import aws_lightsail_bucket_access_key.test example-bucket,AKIA47VOQ2KPR7LLRZ6D
% terraform import aws_lightsail_bucket_access_key.test example-bucket,AKIAIOSFODNN7EXAMPLE
```
Loading