You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
If you are interested in working on this issue or have submitted a pull request, please leave a comment
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# aws_macie_s3_bucket_association.bucket_example will be created
+ resource "aws_macie_s3_bucket_association" "bucket_example" {
+ bucket_name = "bucketymcbucketface"
+ id = (known after apply)
+ classification_type {
+ one_time = "NONE"
}
}
Plan: 1 to add, 0 to change, 0 to destroy.
Actual Behavior
An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# aws_macie_s3_bucket_association.bucket_example will be created
+ resource "aws_macie_s3_bucket_association" "bucket_example" {
+ bucket_name = "bucketymcbucketface"
+ id = (known after apply)
+ classification_type {
+ continuous = "FULL"
+ one_time = "NONE"
}
}
Plan: 1 to add, 0 to change, 0 to destroy.
@MKgridSec Thanks for raising this.
In your example it's the classification_type.continuous attribute that is being set to FULL (which is the default and only currently available value). This will not conflict with the classification_type.one_time attribute.
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Community Note
Terraform Version
Affected Resource(s)
Terraform Configuration Files
Debug Output
Panic Output
Expected Behavior
Actual Behavior
Steps to Reproduce
terraform plan
Important Factoids
I'm trying to only classify newly uploaded files and not perform a full classification of the bucket.
References
The text was updated successfully, but these errors were encountered: