Skip to content

Commit 0f17702

Browse files
committed
mend
1 parent 624b2df commit 0f17702

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
output "collaborator_project_id" {
2+
description = "Collaborator Project ID"
3+
value = equinix_metal_project.project.id
4+
}
5+
6+
output "collaborator_project_api_key" {
7+
description = "Collaborator Project API Key"
8+
value = equinix_metal_project_api_key.project_key.token
9+
}

modules/workshop/examples/welcome/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ terraform {
1010
}
1111

1212
provider "equinix" {
13-
auth_token = var.workshop_metal_api_token
13+
auth_token = var.metal_auth_token
1414
}
1515

1616
module "welcome_workshop" {
1717
source = "../../"
18-
workshop_organization_id = var.workshop_organization_id
18+
workshop_organization_id = var.metal_organization_id
1919
workshop_csv_file = var.workshop_csv_file
2020
workshop_send_invites = var.workshop_send_invites
2121
}

modules/workshop/examples/welcome/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
variable "workshop_metal_api_token" {
1+
variable "metal_auth_token" {
22
description = "Equinix Metal user api token."
33
type = string
44
sensitive = true
55
}
66

7-
variable "workshop_organization_id" {
7+
variable "metal_organization_id" {
88
type = string
99
description = "Equinix Metal organization id"
1010
}

0 commit comments

Comments
 (0)