File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
workshop/examples/welcome Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ terraform {
10
10
}
11
11
12
12
provider "equinix" {
13
- auth_token = var. workshop_metal_api_token
13
+ auth_token = var. metal_auth_token
14
14
}
15
15
16
16
module "welcome_workshop" {
17
17
source = " ../../"
18
- workshop_organization_id = var. workshop_organization_id
18
+ workshop_organization_id = var. metal_organization_id
19
19
workshop_csv_file = var. workshop_csv_file
20
20
workshop_send_invites = var. workshop_send_invites
21
21
}
Original file line number Diff line number Diff line change 1
- variable "workshop_metal_api_token " {
1
+ variable "metal_auth_token " {
2
2
description = " Equinix Metal user api token."
3
3
type = string
4
4
sensitive = true
5
5
}
6
6
7
- variable "workshop_organization_id " {
7
+ variable "metal_organization_id " {
8
8
type = string
9
9
description = " Equinix Metal organization id"
10
10
}
You can’t perform that action at this time.
0 commit comments