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

Commit

Permalink
Merge pull request #4 from BCDevOps/remove-provider
Browse files Browse the repository at this point in the history
remove the tfe provider from the module
  • Loading branch information
wrnu authored Aug 8, 2023
2 parents 1d0543f + e11cd25 commit 9a907f7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ No modules.
| <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 |
| <a name="input_secret_access_key"></a> [secret\_access\_key](#input\_secret\_access\_key) | An AWS secret access key. | `string` | `null` | no |
| <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 |
| <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 |

## Outputs

Expand Down
3 changes: 0 additions & 3 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
provider "tfe" {
token = var.tfc_token
}
locals {
project = jsondecode(file(var.project_definition_file_path))

Expand Down
5 changes: 0 additions & 5 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ variable "organization" {
description = "The name of the Terraform Cloud / Enterprise organization in which the workspace and other resources should be created."
}

variable "tfc_token" {
type = string
description = "Token with administrative access to Terraform cloud organization targeted by the module."
}

variable "team_access_level" {
type = string
default = "plan"
Expand Down

0 comments on commit 9a907f7

Please sign in to comment.