Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove cbr tagging #6

Merged
merged 2 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ This repo provides a starting point for users who want to create valid Terraform

| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
| <a name="input_SSC_CBRID"></a> [SSC\_CBRID](#input\_SSC\_CBRID) | Shared Services Canada Cloud Business Requirement ID | `string` | n/a | yes |
| <a name="input_account_email_domain"></a> [account\_email\_domain](#input\_account\_email\_domain) | The domain to use as the suffix for the email accounts associated with the accounts created by the module. Don't change unless you know what you are doing. In other words, don't change. | `string` | n/a | yes |
| <a name="input_account_email_prefix"></a> [account\_email\_prefix](#input\_account\_email\_prefix) | The prefix to use for the email accounts associated with the accounts created by the module. Don't change unless you know what you are doing. In other words, don't change. | `string` | n/a | yes |
| <a name="input_close_on_deletion"></a> [close\_on\_deletion](#input\_close\_on\_deletion) | true means that the account will be closed when it is deleted. false means that the account be removed from the aws org when it is deleted. | `bool` | `false` | no |
Expand Down
1 change: 0 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ resource "aws_organizations_account" "project_accounts" {
tags = merge({
Project = var.project.name
Environment = each.key
SSC_CBRID = var.SSC_CBRID
}, local.project_tags)

close_on_deletion = var.close_on_deletion
Expand Down
5 changes: 0 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,3 @@ variable "master_account_id" {
type = string
description = "Master Account Id"
}

variable "SSC_CBRID" {
type = string
description = "Shared Services Canada Cloud Business Requirement ID"
}