Skip to content

Instantly share code, notes, and snippets.

@moiaune
Last active June 3, 2021 09:11
Show Gist options
  • Save moiaune/943f2124375625700f00dbe2f150c28b to your computer and use it in GitHub Desktop.
Save moiaune/943f2124375625700f00dbe2f150c28b to your computer and use it in GitHub Desktop.
List azurerm/azuread resources in Terraform project
(Get-ChildItem -File -Recurse | Get-Content | Select-String -Pattern 'resource "(azurerm_.+|azuread_.+)" ".*"' -AllMatches).Matches |
ForEach-Object { $_.Groups[1].Value } |
Sort-Object -Unique
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment