Skip to content

Is it possible to parse multiple json together? #89

Open
@smartaquarius10

Description

@smartaquarius10

Team,

I have tried parsing this json

{
  "module": {
    "ABCD": {
      "source": "",
      "version": "",
      "location": "",
      "resource_group_name": ""
    }
  },
  "module": {
    "PQRS": {
      "source": "",
      "version": "",
      "sa_name": "",
      "resource_group": ""
    }
  }
}

But I'm always getting the details of the last node i.e. PQRS. Is there anyway to get the details of both the nodes considering parent node as modules. The output required is

{
 "ABCD": {
      "source": "",
      "version": "",
      "location": "",
      "resource_group_name": ""
    },
"PQRS": {
      "source": "",
      "version": "",
      "sa_name": "",
      "resource_group": ""
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions