mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Merge pull request #8701 from steveh/feature/aws-billing-service-account
provider/aws: Add AWS Billing & Cost Management service account
This commit is contained in:
commit
dd66af0fa0
@ -0,0 +1,29 @@
|
|||||||
|
package aws
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/hashicorp/terraform/helper/schema"
|
||||||
|
)
|
||||||
|
|
||||||
|
// See http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-getting-started.html#step-2
|
||||||
|
var billingAccountId = "386209384616"
|
||||||
|
|
||||||
|
func dataSourceAwsBillingServiceAccount() *schema.Resource {
|
||||||
|
return &schema.Resource{
|
||||||
|
Read: dataSourceAwsBillingServiceAccountRead,
|
||||||
|
|
||||||
|
Schema: map[string]*schema.Schema{
|
||||||
|
"arn": &schema.Schema{
|
||||||
|
Type: schema.TypeString,
|
||||||
|
Computed: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func dataSourceAwsBillingServiceAccountRead(d *schema.ResourceData, meta interface{}) error {
|
||||||
|
d.SetId(billingAccountId)
|
||||||
|
|
||||||
|
d.Set("arn", "arn:aws:iam::"+billingAccountId+":root")
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
package aws
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/hashicorp/terraform/helper/resource"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestAccAWSBillingServiceAccount_basic(t *testing.T) {
|
||||||
|
resource.Test(t, resource.TestCase{
|
||||||
|
PreCheck: func() { testAccPreCheck(t) },
|
||||||
|
Providers: testAccProviders,
|
||||||
|
Steps: []resource.TestStep{
|
||||||
|
resource.TestStep{
|
||||||
|
Config: testAccCheckAwsBillingServiceAccountConfig,
|
||||||
|
Check: resource.ComposeTestCheckFunc(
|
||||||
|
resource.TestCheckResourceAttr("data.aws_billing_service_account.main", "id", "386209384616"),
|
||||||
|
resource.TestCheckResourceAttr("data.aws_billing_service_account.main", "arn", "arn:aws:iam::386209384616:root"),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
const testAccCheckAwsBillingServiceAccountConfig = `
|
||||||
|
data "aws_billing_service_account" "main" { }
|
||||||
|
`
|
@ -145,6 +145,7 @@ func Provider() terraform.ResourceProvider {
|
|||||||
DataSourcesMap: map[string]*schema.Resource{
|
DataSourcesMap: map[string]*schema.Resource{
|
||||||
"aws_ami": dataSourceAwsAmi(),
|
"aws_ami": dataSourceAwsAmi(),
|
||||||
"aws_availability_zones": dataSourceAwsAvailabilityZones(),
|
"aws_availability_zones": dataSourceAwsAvailabilityZones(),
|
||||||
|
"aws_billing_service_account": dataSourceAwsBillingServiceAccount(),
|
||||||
"aws_caller_identity": dataSourceAwsCallerIdentity(),
|
"aws_caller_identity": dataSourceAwsCallerIdentity(),
|
||||||
"aws_cloudformation_stack": dataSourceAwsCloudFormationStack(),
|
"aws_cloudformation_stack": dataSourceAwsCloudFormationStack(),
|
||||||
"aws_ecs_container_definition": dataSourceAwsEcsContainerDefinition(),
|
"aws_ecs_container_definition": dataSourceAwsEcsContainerDefinition(),
|
||||||
|
@ -0,0 +1,60 @@
|
|||||||
|
---
|
||||||
|
layout: "aws"
|
||||||
|
page_title: "AWS: aws_billing_service_account"
|
||||||
|
sidebar_current: "docs-aws-datasource-billing-service-account"
|
||||||
|
description: |-
|
||||||
|
Get AWS Billing Service Account
|
||||||
|
---
|
||||||
|
|
||||||
|
# aws\_billing\_service\_account
|
||||||
|
|
||||||
|
Use this data source to get the Account ID of the [AWS Billing and Cost Management Service Account](http://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/billing-getting-started.html#step-2) for the purpose of whitelisting in S3 bucket policy.
|
||||||
|
|
||||||
|
## Example Usage
|
||||||
|
|
||||||
|
```
|
||||||
|
data "aws_billing_service_account" "main" { }
|
||||||
|
|
||||||
|
resource "aws_s3_bucket" "billing_logs" {
|
||||||
|
bucket = "my-billing-tf-test-bucket"
|
||||||
|
acl = "private"
|
||||||
|
policy = <<POLICY
|
||||||
|
{
|
||||||
|
"Id": "Policy",
|
||||||
|
"Version": "2012-10-17",
|
||||||
|
"Statement": [
|
||||||
|
{
|
||||||
|
"Action": [
|
||||||
|
"s3:GetBucketAcl", "s3:GetBucketPolicy"
|
||||||
|
],
|
||||||
|
"Effect": "Allow",
|
||||||
|
"Resource": "arn:aws:s3:::my-billing-tf-test-bucket",
|
||||||
|
"Principal": {
|
||||||
|
"AWS": [
|
||||||
|
"${data.aws_billing_service_account.main.id}"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Action": [
|
||||||
|
"s3:PutObject"
|
||||||
|
],
|
||||||
|
"Effect": "Allow",
|
||||||
|
"Resource": "arn:aws:s3:::my-billing-tf-test-bucket/AWSLogs/*",
|
||||||
|
"Principal": {
|
||||||
|
"AWS": [
|
||||||
|
"${data.aws_billing_service_account.main.id}"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
POLICY
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Attributes Reference
|
||||||
|
|
||||||
|
* `id` - The ID of the AWS billing service account.
|
||||||
|
* `arn` - The ARN of the AWS billing service account.
|
Loading…
Reference in New Issue
Block a user