Skip to content

Commit

Permalink
fix reference to bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
richgreen-moj committed Nov 19, 2024
1 parent dcf1fae commit 5916191
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/environments/bootstrap/member-bootstrap/datasync.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Get inventory sync bucket name from modernisation platform account
data "aws_s3_bucket" "ssm_inventory_sync_bucket" {
provider = aws.modernisation-platform
bucket = module.ssm-inventory-sync-bucket.bucket_name
bucket = "ssm-inventory-sync-bucket-euw2"
}

# SSM Resource Data Sync
resource "aws_ssm_resource_data_sync" "member_bootstrap" {
name = "member-bootstrap-resource-data-sync"
s3_destination {
bucket_name = data.aws_s3_bucket.ssm_inventory_sync_bucket.bucket
bucket_name = data.aws_s3_bucket.ssm_inventory_sync_bucket.id
region = data.aws_region.current.name
sync_format = "JsonSerDe"
}
Expand Down

0 comments on commit 5916191

Please sign in to comment.