diff --git a/README.md b/README.md
index c6bdddb..f5e60fa 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,6 @@ This repo provides a starting point for users who want to create valid Terraform
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
-| [SSC\_CBRID](#input\_SSC\_CBRID) | Shared Services Canada Cloud Business Requirement ID | `string` | n/a | yes |
| [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 |
| [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 |
| [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 |
diff --git a/main.tf b/main.tf
index e3c8d65..2569f29 100644
--- a/main.tf
+++ b/main.tf
@@ -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
diff --git a/variables.tf b/variables.tf
index a7b5a32..0cbea88 100644
--- a/variables.tf
+++ b/variables.tf
@@ -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"
-}
\ No newline at end of file