Initial Oracle Deep Data Security lab kit
Some checks failed
Repo Quality / structure (push) Has been cancelled
Terraform Validate / validate (push) Has been cancelled

This commit is contained in:
Rodrigo Pace
2026-05-08 12:08:05 -03:00
commit 5cd8752a90
88 changed files with 2189 additions and 0 deletions

17
scripts/bootstrap.ps1 Normal file
View File

@@ -0,0 +1,17 @@
param()
$ErrorActionPreference = "Stop"
Write-Host "Checking local tools..."
$tools = @("git", "terraform")
foreach ($tool in $tools) {
$cmd = Get-Command $tool -ErrorAction SilentlyContinue
if ($null -eq $cmd) {
Write-Warning "$tool not found in PATH"
} else {
Write-Host "$tool found: $($cmd.Source)"
}
}
Write-Host "Bootstrap check finished."