forked from pkelly808/Terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
TFWorkspace.ps1
594 lines (439 loc) · 18.4 KB
/
TFWorkspace.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
<# AVAILABLE
Assign an SSH key to a workspace
PATCH /workspaces/:workspace_id/relationships/ssh-key
Unassign an SSH key from a workspace
PATCH /workspaces/:workspace_id/relationships/ssh-key
#>
function Get-TFWorkspace {
<#
.SYNOPSIS
Get workspaces in terraform enterprise.
Run cmdlet to list all workspaces. Use the NAME parameter for a specific workspace.
Format-Table view is used, actual Properties names and complete list of properties are visible with Format-List.
Specify the SERVER, APITOKEN and ORG within the cmdlet or use Set-Terraform to store them globally.
APIToken can be generated at https://<TFE>/app/settings/tokens
.DESCRIPTION
List workspaces
GET /organizations/:organization_name/workspaces
Show workspace
GET /workspaces/:workspace_id
.EXAMPLE
Get-TFWorkspace | ogv
List workspaces and pipe objects to Out-GridView
.EXAMPLE
Get-TFWorkspace -Name workspace1
List the properties for a specific workspace
.EXAMPLE
Get-TFWorkspace -Server tfe -APIToken string
List using a specific Server and APIToken
.LINK
https://www.terraform.io/docs/cloud/api/workspaces.html
#>
[CmdletBinding()]
Param
(
[string]$Name,
[string]$Server = $Terraform.Server,
[string]$APIToken = $Terraform.Token,
[string]$Org = $Terraform.Org,
[int]$ResultPageSize = 100
)
if (!$Server -or !$APIToken) {Write-Warning "Missing Server and APIToken, use Connect-Terraform"; Continue}
if ($Name) {
#Show workspace
$Uri = "https://$Server/api/v2/organizations/$Org/workspaces/$Name"
} else {
#List workspaces
$Uri = "https://$Server/api/v2/organizations/$Org/workspaces"
}
$Headers = @{
Authorization = "Bearer $APIToken"
'Content-Type' = 'application/vnd.api+json'
}
$i = 1
do {
try {
$Results = (Invoke-RestMethod -Uri "$($Uri)?page%5Bsize%5D=$ResultPageSize&page%5Bnumber%5D=$i" -Headers $Headers -Method Get).Data
foreach ($Result in $Results) {
$Workspace = ($Result).Attributes
$Workspace.PSObject.TypeNames.Insert(0,'Terraform.TFWorkspace')
$Workspace | Add-Member -NotePropertyName id -NotePropertyValue $Result.id
$Workspace | Add-Member -NotePropertyName branch -NotePropertyValue $Workspace.'vcs-repo'.branch
$Workspace
}
Write-Verbose "Page $i; Results Count $($Results.count)"
$i++
} catch {
if ($Name) {
Write-Warning "Unable to get workspace for $Name : $($_.Exception.Message) : Line $($_.InvocationInfo.ScriptLineNumber)"
} else {
Write-Warning "Unable to get list of workspaces : $($_.Exception.Message) : Line $($_.InvocationInfo.ScriptLineNumber)"
}
Continue
}
} while ($Results.count -eq $ResultPageSize)
}
function New-TFWorkspace {
<#
.SYNOPSIS
Create a new workspace.
Specify the SERVER, APITOKEN and ORG within the cmdlet or use Set-Terraform to store them globally.
APIToken can be generated at https://<TFE>/app/settings/tokens
.DESCRIPTION
Create a Workspace
POST /organizations/:organization_name/workspaces
.LINK
https://www.terraform.io/docs/cloud/api/workspaces.html
#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact='High')]
Param
(
[Parameter(Mandatory)]
[string]$Name,
[Parameter(Mandatory)]
[string]$Repo,
[string]$WorkingDirectory,
[string]$TerraformVersion,
[string]$Branch,
[string]$VCS = 'GitHub',
[string]$Server = $Terraform.Server,
[string]$APIToken = $Terraform.Token,
[string]$Org = $Terraform.Org
)
PROCESS {
if (!$Server -or !$APIToken) {Write-Warning "Missing Server and APIToken, use Connect-Terraform"; Continue}
$Uri = "https://$Server/api/v2/organizations/$Org/workspaces"
$Headers = @{
Authorization = "Bearer $APIToken"
'Content-Type' = 'application/vnd.api+json'
}
try {
$OAuthToken = Get-TFOAuthToken -VCS $VCS -Server $Server -APIToken $APIToken -Org $Org
$Data = @{
attributes = @{
name = $Name
'resource-count' = 0
'terraform_version' = $TerraformVersion
'working-directory' = $WorkingDirectory.ToLower()
'vcs-repo' = @{
identifier = $Repo
'oauth-token-id' = $OAuthToken
branch = $Branch
}
}
type = 'workspaces'
}
$Body = @{data=$Data} | ConvertTo-Json -Depth 3
Write-Verbose "$Body"
if ($PSCmdlet.ShouldProcess($Name)) {
Invoke-RestMethod -Uri $Uri -Headers $Headers -Body $Body -Method Post | Out-Null
}
} catch {
Write-Warning "Unable to create $Name : $($_.Exception.Message) : Line $($_.InvocationInfo.ScriptLineNumber)"
Continue
}
}
}
function Set-TFWorkspace {
<#
.SYNOPSIS
Update a workspace.
Specify the SERVER, APITOKEN and ORG within the cmdlet or use Set-Terraform to store them globally.
APIToken can be generated at https://<TFE>/app/settings/tokens
.DESCRIPTION
Update a Workspace (two options, using Name instead of Id)
PATCH /workspaces/:workspace_id
PATCH /organizations/:organization_name/workspaces/:name
.EXAMPLE
Set-TFWorkspace workspace -TerraformVersion 0.12.24
You will be prompted to confirm update.
.LINK
https://www.terraform.io/docs/cloud/api/workspaces.html
#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact='High')]
Param
(
[Parameter(Mandatory,ValueFromPipeline,ValueFromPipelineByPropertyName)]
[string]$Name,
[string]$TerraformVersion,
[string]$WorkingDirectory,
[string]$VCS,
[string]$Repo,
[string]$Branch,
[string]$Server = $Terraform.Server,
[string]$APIToken = $Terraform.Token,
[string]$Org = $Terraform.Org
)
PROCESS {
if (!$Server -or !$APIToken) {Write-Warning "Missing Server and APIToken, use Connect-Terraform"; Continue}
if ($VCS -and !$Repo) {Write-Warning "Set VCS requires Repo"; Continue}
$Uri = "https://$Server/api/v2/organizations/$Org/workspaces/$Name"
$Headers = @{
Authorization = "Bearer $APIToken"
'Content-Type' = 'application/vnd.api+json'
}
try {
$Attributes = New-Object -TypeName PSObject
if ($TerraformVersion) {$Attributes | Add-Member -NotePropertyMembers @{terraform_version=$TerraformVersion}}
if ($WorkingDirectory) {$Attributes | Add-Member -NotePropertyMembers @{'working-directory'=$WorkingDirectory}}
if ($VCS -or $Repo -or $Branch) {
$VcsRepo = New-Object -TypeName PSObject
if ($VCS) {
$OAuthToken = Get-TFOAuthToken -VCS $VCS -Server $Server -APIToken $APIToken -Org $Org
$VcsRepo | Add-Member -NotePropertyMembers @{'oauth-token-id'=$OAuthToken}
}
if ($Repo) {$VcsRepo | Add-Member -NotePropertyMembers @{identifier=$Repo}}
if ($Branch) {$VcsRepo | Add-Member -NotePropertyMembers @{branch=$Branch}}
$Attributes | Add-Member -NotePropertyMembers @{'vcs-repo'=$VcsRepo}
}
$Data = [PSCustomObject]@{
attributes = $Attributes
type = 'workspaces'
}
$Body = @{data=$Data} | ConvertTo-Json -Depth 3
Write-Verbose "$Body"
if ($PSCmdlet.ShouldProcess($Name)) {
Invoke-RestMethod -Uri $Uri -Headers $Headers -Body $Body -Method Patch | Out-Null
}
} catch {
Write-Warning "Unable to update $Name : $($_.Exception.Message) : Line $($_.InvocationInfo.ScriptLineNumber)"
Continue
}
}
}
function Copy-TFWorkspace {
<#
.SYNOPSIS
Create a copy of a workspace. Workspace variables are also copied.
Specify the SERVER, APITOKEN and ORG within the cmdlet or use Set-Terraform to store them globally.
APIToken can be generated at https://<TFE>/app/settings/tokens
.DESCRIPTION
Create a Workspace
POST /organizations/:organization_name/workspaces
.LINK
https://www.terraform.io/docs/cloud/api/workspaces.html
#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact='High')]
Param
(
[Parameter(Mandatory)]
[string]$Name,
[Parameter(Mandatory)]
[string]$Destination,
[string]$Server = $Terraform.Server,
[string]$APIToken = $Terraform.Token,
[string]$Org = $Terraform.Org
)
PROCESS {
if (!$Server -or !$APIToken) {Write-Warning "Missing Server and APIToken, use Connect-Terraform"; Continue}
$Uri = "https://$Server/api/v2/organizations/$Org/workspaces"
$Headers = @{
Authorization = "Bearer $APIToken"
'Content-Type' = 'application/vnd.api+json'
}
try {
$Workspace = Get-TFWorkspace -Name $Name
$Data = @{
attributes = @{
name = $Destination
'resource-count' = 0
'terraform_version' = $Workspace.'terraform-version'
'working-directory' = $($Workspace.'working-directory').ToLower()
'vcs-repo' = @{
identifier = $Workspace.'vcs-repo-identifier'
'oauth-token-id' = $Workspace.'vcs-repo'.'oauth-token-id'
branch = $Workspace.'vcs-repo'.branch
}
}
type = 'workspaces'
}
$Body = @{data=$Data} | ConvertTo-Json -Depth 3
Write-Verbose "$Body"
if ($PSCmdlet.ShouldProcess($Name)) {
Invoke-RestMethod -Uri $Uri -Headers $Headers -Body $Body -Method Post | Out-Null
}
} catch {
Write-Warning "Unable to create copy $Destination : $($_.Exception.Message) : Line $($_.InvocationInfo.ScriptLineNumber)"
Continue
}
$WorkspaceVariable = Get-TFWorkspaceVariable -Name $Name
foreach ($Variable in $WorkspaceVariable) {
switch ($Variable) {
{$_.hcl -and $_.sensitive} {
New-TFWorkspaceVariable -Name $Destination -Key $Variable.Key -Value 'bad' -Description $Variable.Description -HCL -Sensitive
}
{$_.hcl} {
New-TFWorkspaceVariable -Name $Destination -Key $Variable.Key -Value $Variable.Value -Description $Variable.Description -HCL
}
{$_.sensitive} {
New-TFWorkspaceVariable -Name $Destination -Key $Variable.Key -Value 'bad' -Description $Variable.Description -Sensitive
}
default {
New-TFWorkspaceVariable -Name $Destination -Key $Variable.Key -Value $Variable.Value -Description $Variable.Description
}
}
}
}
}
function Lock-TFWorkspace {
<#
.SYNOPSIS
You can lock/unlock a workspace to allow/prevent Terraform runs.
Lock-TFWorkspace
UnLock-TFWorkspace
UnLock-TFWorkspace -Force
Specify the SERVER, APITOKEN and ORG within the cmdlet or use Set-Terraform to store them globally.
APIToken can be generated at https://<TFE>/app/settings/tokens
.DESCRIPTION
Lock a workspace
POST /workspaces/:workspace_id/actions/lock
Unlock a workspace
POST /workspaces/:workspace_id/actions/unlock
Force Unlock a workspace
POST /workspaces/:workspace_id/actions/force-unlock
.EXAMPLE
Lock-TFWorkspace workspace
Lock a workspace
.LINK
https://www.terraform.io/docs/cloud/api/workspaces.html
#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact='High')]
Param
(
[Parameter(Mandatory,ValueFromPipeline,ValueFromPipelineByPropertyName)]
[string[]]$Name,
[string]$Reason = 'Locked from Powershell',
[string]$Server = $Terraform.Server,
[string]$APIToken = $Terraform.Token,
[string]$Org = $Terraform.Org
)
PROCESS {
if (!$Server -or !$APIToken) {Write-Warning "Missing Server and APIToken, use Connect-Terraform"; Continue}
$Headers = @{
Authorization = "Bearer $APIToken"
'Content-Type' = 'application/vnd.api+json'
}
foreach ($Workspace in $Name) {
try {
$WorkspaceId = (Get-TFWorkspace -Server $Server -APIToken $APIToken -Name $Workspace).id
Write-Verbose "Workspace $Workspace; WorkspaceId $WorkspaceId"
if (!$WorkspaceId) {Continue}
$Uri = "https://$Server/api/v2/workspaces/$WorkspaceId/actions/lock"
$Body = @{reason=$Reason} | ConvertTo-Json -Depth 1
Write-Verbose "$Body"
if ($PSCmdlet.ShouldProcess($Workspace)) {
Invoke-RestMethod -Uri $Uri -Headers $Headers -Body $Body -Method Post | Out-Null
}
} catch {
Write-Warning "Unable to lock $Workspace : $($_.Exception.Message) : Line $($_.InvocationInfo.ScriptLineNumber)"
Continue
}
}
}
}
function Unlock-TFWorkspace {
<#
.SYNOPSIS
You can lock/unlock a workspace to allow/prevent Terraform runs.
Lock-TFWorkspace
UnLock-TFWorkspace
UnLock-TFWorkspace -Force
Specify the SERVER, APITOKEN and ORG within the cmdlet or use Set-Terraform to store them globally.
APIToken can be generated at https://<TFE>/app/settings/tokens
.DESCRIPTION
Lock a workspace
POST /workspaces/:workspace_id/actions/lock
Unlock a workspace
POST /workspaces/:workspace_id/actions/unlock
Force Unlock a workspace
POST /workspaces/:workspace_id/actions/force-unlock
.EXAMPLE
Unlock-TFWorkspace workspace
Unlock a workspace.
.EXAMPLE
Unlock-TFWorkspace workspace -Force
Force a workspace to be unlocked.
.LINK
https://www.terraform.io/docs/cloud/api/workspaces.html
#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact='High')]
Param
(
[Parameter(Mandatory,ValueFromPipeline,ValueFromPipelineByPropertyName)]
[string[]]$Name,
[switch]$Force,
[string]$Server = $Terraform.Server,
[string]$APIToken = $Terraform.Token,
[string]$Org = $Terraform.Org
)
PROCESS {
if (!$Server -or !$APIToken) {Write-Warning "Missing Server and APIToken, use Connect-Terraform"; Continue}
$Headers = @{
Authorization = "Bearer $APIToken"
'Content-Type' = 'application/vnd.api+json'
}
foreach ($Workspace in $Name) {
try {
$WorkspaceId = (Get-TFWorkspace -Server $Server -APIToken $APIToken -Name $Workspace).id
Write-Verbose "Workspace $Workspace; WorkspaceId $WorkspaceId"
if (!$WorkspaceId) {Continue}
if ($Force) {
$Uri = "https://$Server/api/v2/workspaces/$WorkspaceId/actions/force-unlock"
} else {
$Uri = "https://$Server/api/v2/workspaces/$WorkspaceId/actions/unlock"
}
if ($PSCmdlet.ShouldProcess($Workspace)) {
Invoke-RestMethod -Uri $Uri -Headers $Headers -Method Post | Out-Null
}
} catch {
Write-Warning "Unable to unlock $Workspace : $($_.Exception.Message) : Line $($_.InvocationInfo.ScriptLineNumber)"
Continue
}
}
}
}
function Remove-TFWorkspace {
<#
.SYNOPSIS
Delete a workspace.
Specify the SERVER, APITOKEN and ORG within the cmdlet or use Set-Terraform to store them globally.
APIToken can be generated at https://<TFE>/app/settings/tokens
.DESCRIPTION
Delete a workspace
DELETE /organizations/:organization_name/workspaces/:name
.LINK
https://www.terraform.io/docs/cloud/api/workspaces.html#delete-a-workspace
#>
[CmdletBinding(SupportsShouldProcess, ConfirmImpact='High')]
Param
(
[Parameter(Mandatory,ValueFromPipeline,ValueFromPipelineByPropertyName)]
[string]$Name,
[string]$Server = $Terraform.Server,
[string]$APIToken = $Terraform.Token,
[string]$Org = $Terraform.Org
)
PROCESS {
if (!$Server -or !$APIToken) {Write-Warning "Missing Server and APIToken, use Connect-Terraform"; Continue}
$Uri = "https://$Server/api/v2/organizations/$Org/workspaces/$Name"
$Headers = @{
Authorization = "Bearer $APIToken"
'Content-Type' = 'application/vnd.api+json'
}
try {
if ($PSCmdlet.ShouldProcess($Name)) {
Invoke-RestMethod -Uri $Uri -Headers $Headers -Method Delete | Out-Null
}
} catch {
Write-Warning "Unable to delete $Name : $($_.Exception.Message) : Line $($_.InvocationInfo.ScriptLineNumber)"
Continue
}
}
}
Set-Alias gtfw Get-TFWorkspace
Set-Alias ntfw New-TFWorkspace
Set-Alias stfw Set-TFWorkspace
Set-Alias ctfw Copy-TFWorkspace
Set-Alias lktfw Lock-TFWorkspace
Set-Alias uktfw Unlock-TFWorkspace
Set-Alias rtfw Remove-TFWorkspace