/* Copyright 2023 The Kubernetes Authors. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ # Cost and Usage module "cur_reports_s3_bucket" { source = "terraform-aws-modules/s3-bucket/aws" bucket = "k8s-infra-cur-reports-bucket" # S3 bucket-level Public Access Block configuration block_public_acls = true block_public_policy = true ignore_public_acls = true restrict_public_buckets = true attach_deny_insecure_transport_policy = true attach_policy = true policy = data.aws_iam_policy_document.cur_reports_s3_bucket.json # Note: Object Lock configuration can be enabled only on new buckets # https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_object_lock_configuration object_lock_enabled = true versioning = { enabled = true mfa_delete = false } } module "cur_reports_integration_athena_s3_bucket" { source = "terraform-aws-modules/s3-bucket/aws" bucket = "k8s-infra-cur-reports-athena-bucket" # S3 bucket-level Public Access Block configuration block_public_acls = true block_public_policy = true ignore_public_acls = true restrict_public_buckets = true attach_deny_insecure_transport_policy = true attach_policy = true policy = data.aws_iam_policy_document.cur_reports_integration_athena_s3_bucket.json # Note: Object Lock configuration can be enabled only on new buckets # https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/s3_bucket_object_lock_configuration object_lock_enabled = true versioning = { enabled = true mfa_delete = false } } data "aws_iam_policy_document" "cur_reports_s3_bucket" { version = "2008-10-17" statement { sid = "AWSBillingDeliveryAclCheck" effect = "Allow" principals { type = "Service" identifiers = [ "billingreports.amazonaws.com" ] } actions = [ "s3:GetBucketPolicy", "s3:GetBucketAcl" ] resources = [module.cur_reports_s3_bucket.s3_bucket_arn] condition { test = "StringEquals" variable = "aws:SourceArn" values = ["arn:aws:cur:us-east-1:${data.aws_caller_identity.current.account_id}:definition/*"] } condition { test = "StringEquals" variable = "aws:SourceAccount" values = [data.aws_caller_identity.current.account_id] } } statement { sid = "AWSBillingDeliveryWrite" effect = "Allow" actions = ["s3:PutObject"] resources = ["${module.cur_reports_s3_bucket.s3_bucket_arn}/*"] principals { type = "Service" identifiers = ["billingreports.amazonaws.com"] } condition { test = "StringEquals" variable = "aws:SourceArn" values = ["arn:aws:cur:us-east-1:${data.aws_caller_identity.current.account_id}:definition/*"] } condition { test = "StringEquals" variable = "aws:SourceAccount" values = [data.aws_caller_identity.current.account_id] } } } data "aws_iam_policy_document" "cur_reports_integration_athena_s3_bucket" { version = "2008-10-17" statement { sid = "AWSBillingDeliveryAclCheck" effect = "Allow" principals { type = "Service" identifiers = [ "billingreports.amazonaws.com" ] } actions = [ "s3:GetBucketPolicy", "s3:GetBucketAcl" ] resources = [module.cur_reports_integration_athena_s3_bucket.s3_bucket_arn] condition { test = "StringEquals" variable = "aws:SourceArn" values = ["arn:aws:cur:us-east-1:${data.aws_caller_identity.current.account_id}:definition/*"] } condition { test = "StringEquals" variable = "aws:SourceAccount" values = [data.aws_caller_identity.current.account_id] } } statement { sid = "AWSBillingDeliveryWrite" effect = "Allow" actions = ["s3:PutObject"] resources = ["${module.cur_reports_integration_athena_s3_bucket.s3_bucket_arn}/*"] principals { type = "Service" identifiers = ["billingreports.amazonaws.com"] } condition { test = "StringEquals" variable = "aws:SourceArn" values = ["arn:aws:cur:us-east-1:${data.aws_caller_identity.current.account_id}:definition/*"] } condition { test = "StringEquals" variable = "aws:SourceAccount" values = [data.aws_caller_identity.current.account_id] } } }