Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 9a907f7

Browse files
authored
Merge pull request #4 from BCDevOps/remove-provider
remove the tfe provider from the module
2 parents 1d0543f + e11cd25 commit 9a907f7

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ No modules.
5858
| <a name="input_project_definition_file_path"></a> [project\_definition\_file\_path](#input\_project\_definition\_file\_path) | Full path to JSON file containing project definition structure. (project.json by convention) | `string` | `"project.json"` | no |
5959
| <a name="input_secret_access_key"></a> [secret\_access\_key](#input\_secret\_access\_key) | An AWS secret access key. | `string` | `null` | no |
6060
| <a name="input_team_access_level"></a> [team\_access\_level](#input\_team\_access\_level) | The value indicating the level of access (permission set) that the TF Cloud team being created should have in the workspace being created. | `string` | `"plan"` | no |
61-
| <a name="input_tfc_token"></a> [tfc\_token](#input\_tfc\_token) | Token with administrative access to Terraform cloud organization targeted by the module. | `string` | n/a | yes |
6261

6362
## Outputs
6463

main.tf

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
provider "tfe" {
2-
token = var.tfc_token
3-
}
41
locals {
52
project = jsondecode(file(var.project_definition_file_path))
63

variables.tf

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ variable "organization" {
1010
description = "The name of the Terraform Cloud / Enterprise organization in which the workspace and other resources should be created."
1111
}
1212

13-
variable "tfc_token" {
14-
type = string
15-
description = "Token with administrative access to Terraform cloud organization targeted by the module."
16-
}
17-
1813
variable "team_access_level" {
1914
type = string
2015
default = "plan"

0 commit comments

Comments
 (0)