-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.tf
35 lines (32 loc) · 1.08 KB
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* ## Usage
*
* Creates IAM Billing Roles that can be assumed for billing operations.
*
* Read the more about [IAM Tutorial: Delegate access to the billing console](https://docs.aws.amazon.com/IAM/latest/UserGuide/tutorial_billing.html)
*
* ```hcl
* module "billing_roles" {
* source = "dod-iac/iam-billing-roles/aws"
*
* tags = {
* Application = var.application
* Environment = var.environment
* Automation = "Terraform"
* }
* }
* ```
*
* ## Terraform Version
*
* Terraform 0.13. Pin module version to ~> 1.0.0 . Submit pull-requests to master branch.
*
* Terraform 0.11 and 0.12 are not supported.
*
* ## License
*
* This project constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. However, because the project utilizes code licensed from contributors and other third parties, it therefore is licensed under the MIT License. See LICENSE file for more information.
*/
data "aws_caller_identity" "current" {}
data "aws_partition" "current" {}
data "aws_region" "current" {}