Skip to content

Commit

Permalink
Skip Plan: explicitly - the regex in 9cf4839 was too strict
Browse files Browse the repository at this point in the history
  • Loading branch information
skorfmann committed May 27, 2021
1 parent 82e95d0 commit a06bdb0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/cdktf-cli/bin/cmds/ui/terraform-context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const parseOutput = (str: string): DeployingResource[] => {
const resources = lines.map(line => {

if (/^Outputs:/.test(line)) { return }
if (/^Plan:/.test(line)) { return }
if (/^data\..*/.test(line)) { return }

const resourceMatch = line.match(/^([a-zA-Z_][a-zA-Z\d_\-.]*):/)
Expand Down

0 comments on commit a06bdb0

Please sign in to comment.