Skip to content

Commit

Permalink
Merge pull request #736 from hashicorp/fix-adapt-to-changed-tf-output
Browse files Browse the repository at this point in the history
fix(cli): Adapt to changed output format in Terraform 0.15.4
  • Loading branch information
ansgarm authored May 27, 2021
2 parents 2e23b70 + 9cf4839 commit ebb6ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cdktf-cli/bin/cmds/ui/terraform-context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const parseOutput = (str: string): DeployingResource[] => {
if (/^Outputs:/.test(line)) { return }
if (/^data\..*/.test(line)) { return }

const resourceMatch = line.match(/^([a-zA-Z_][a-zA-Z\d_\-.]*):/)
const resourceMatch = line.match(/^([a-zA-Z_][a-zA-Z\d_-]+\.[a-zA-Z\d_-]+):/)
let applyState: DeployingResourceApplyState;

switch (true) {
Expand Down

0 comments on commit ebb6ffa

Please sign in to comment.