├── .dockerignore ├── .docs ├── CRAIG-getting-started.md ├── README.md ├── access-policies.md ├── craig-code-engine.md ├── dev-env-setup.md ├── images │ ├── CRAIG-download-icon.png │ ├── CRAIG-usage-pattern.drawio.png │ ├── Update-project-enable-schematics.png │ ├── Upload-to-schematics.png │ ├── craig-application-panel.png │ ├── craig-ce-imgbld.png │ ├── craig-ce-project.png │ ├── import-from-json.png │ ├── import-json-options.png │ ├── power-poc-classic.png │ ├── powervs-poc-arch.png │ ├── schematics-actions.png │ ├── schematics-cost-estimate.png │ └── schematics-setting-page.png ├── poc-template-worksheet.md ├── poc-templates.md ├── power-vs-workspace-deployment.md ├── powervs-poc-classic.md ├── powervs-poc.md ├── running-terraform-files.md ├── schematics-how-to.md └── troubleshooting.md ├── .env.example ├── .githooks └── pre-commit ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── vulnerability-report.md └── workflows │ └── traffic_workflow.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .tekton ├── ci │ ├── ci-listener.yml │ └── ci-pipeline.yml ├── pr │ ├── pr-listener.yml │ └── pr-pipeline.yml └── tasks │ ├── task-check-health.yml │ ├── task-deploy-to-code-engine.yml │ └── task-publish-code-engine-deployable-mapping.yml ├── .whitesource ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── access.sh ├── ansible ├── all-templates │ └── main.yml └── template-test │ ├── main.yml │ ├── roles │ ├── action │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── await_action │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── create_schematics_action │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── create_schematics_workspace │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── delete_schematics_workspace │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── download_tar │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── get_iam_token │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── get_workspace_data │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── pause │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── run_schematics_action │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── update_variablestore │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ ├── update_workspace_variables │ │ ├── README.md │ │ ├── defaults │ │ │ └── main.yml │ │ ├── handlers │ │ │ └── main.yml │ │ ├── meta │ │ │ └── main.yml │ │ ├── tasks │ │ │ └── main.yml │ │ ├── tests │ │ │ ├── inventory │ │ │ └── test.yml │ │ └── vars │ │ │ └── main.yml │ └── upload_tar │ │ ├── README.md │ │ ├── defaults │ │ └── main.yml │ │ ├── handlers │ │ └── main.yml │ │ ├── meta │ │ └── main.yml │ │ ├── tasks │ │ └── main.yml │ │ ├── tests │ │ ├── inventory │ │ └── test.yml │ │ └── vars │ │ └── main.yml │ ├── test-inside-action.yml │ └── vars │ ├── template_override_vars │ ├── from-scratch.yml │ ├── mixed.yml │ ├── oracle-rac.yml │ ├── oracle-si.yml │ ├── power-vs-poc.yml │ ├── power-vs-sap-hana.yml │ ├── quick-start-power.yml │ ├── vpnaas.yml │ ├── vsi-edge.yml │ └── vsi.yml │ ├── vars.template.yml │ └── vars.yml ├── client ├── .editorconfig ├── .gitignore ├── .npmrc ├── .prettierignore ├── LICENSE ├── README.md ├── craco.config.js ├── next.config.js ├── package-lock.json ├── package.json ├── public │ ├── craig-ibm-c-rounded.png │ ├── favicon.svg │ ├── index.html │ └── manifest.json └── src │ ├── App.js │ ├── Craig.js │ ├── app.scss │ ├── app │ ├── [[...slug]] │ │ ├── client.js │ │ └── page.js │ ├── craig-ibm-c-rounded.png │ ├── favicon.svg │ ├── layout.js │ ├── manifest.json │ └── not-found.js │ ├── components │ ├── README.md │ ├── forms │ │ ├── CbrForm.js │ │ ├── CopyRuleForm.js │ │ ├── DynamicForm.js │ │ ├── EdgeNetworkingForm.js │ │ ├── ObservabilityForm.js │ │ ├── README.md │ │ ├── copy-rule-form-page.css │ │ ├── duplicate-rules │ │ │ ├── AddClusterRules.js │ │ │ ├── AddClusterRulesModalContent.js │ │ │ ├── CopyAclModalContent.js │ │ │ ├── CopyRule.js │ │ │ ├── CopyRuleObject.js │ │ │ ├── CopySgModalContent.js │ │ │ ├── README.md │ │ │ └── index.js │ │ ├── dynamic-form │ │ │ ├── DynamicDatePicker.js │ │ │ ├── DynamicFetchMultiSelect.js │ │ │ ├── DynamicFetchSelect.js │ │ │ ├── NaclRulesSubForm.js │ │ │ ├── OptionsButton.js │ │ │ ├── PowerInterfaces.js │ │ │ ├── README.md │ │ │ ├── SgRuleSubForm.js │ │ │ ├── SubFormOverrideTile.js │ │ │ ├── SubnetTileSubForm.js │ │ │ ├── components.js │ │ │ ├── index.js │ │ │ └── tiles.js │ │ ├── edge-network.css │ │ ├── index.js │ │ ├── network-rules-order-card │ │ │ ├── NetworkingRuleOrderCard.js │ │ │ ├── OrderCardDataTable.js │ │ │ └── index.js │ │ ├── options.css │ │ └── utils │ │ │ ├── CannotBeUndoneModal.js │ │ │ ├── CraigFormHeading.js │ │ │ ├── DeleteModal.js │ │ │ ├── Docs.js │ │ │ ├── DynamicFormModal.js │ │ │ ├── DynamicRender.js │ │ │ ├── FormGroup.js │ │ │ ├── FormTemplate.js │ │ │ ├── PopoverWrapper.js │ │ │ ├── PrimaryButton.js │ │ │ ├── RenderForm.js │ │ │ ├── SecondaryButton.js │ │ │ ├── StatefulTabs.js │ │ │ ├── StatelessFormWrapper.js │ │ │ ├── ToggleForm.js │ │ │ ├── ToggleFormComponents.js │ │ │ ├── ToolTip.js │ │ │ ├── UnsavedChangesModal.js │ │ │ └── index.js │ ├── index.js │ ├── modals │ │ ├── NavigationRedirectModal.css │ │ └── NavigationRedirectModal.js │ ├── page-template │ │ ├── BottomAbout.js │ │ ├── CodeMirror.js │ │ ├── Footer.js │ │ ├── LeftNav.js │ │ ├── LeftNavItem.js │ │ ├── Navigation.js │ │ ├── NoProjectModal.js │ │ ├── Notification.js │ │ ├── PageTemplate.js │ │ ├── README.md │ │ ├── ValidNavBox.js │ │ ├── code-mirror.css │ │ ├── footer.scss │ │ ├── index.js │ │ ├── navigation.scss │ │ └── page-template.css │ ├── pages │ │ ├── About.js │ │ ├── CraigForms.js │ │ ├── FormPages.js │ │ ├── Home.js │ │ ├── ImportJson.js │ │ ├── JsonDocs.js │ │ ├── PageNotFound.js │ │ ├── README.md │ │ ├── ReleaseNotes.js │ │ ├── ResetState.js │ │ ├── SimplePages.js │ │ ├── SplashPage.js │ │ ├── Stats.js │ │ ├── about.scss │ │ ├── classic │ │ │ └── Classic.js │ │ ├── cloud-services │ │ │ ├── CloudServices.js │ │ │ ├── ManageService.js │ │ │ ├── cloud-services.css │ │ │ └── index.js │ │ ├── diagrams │ │ │ ├── AclMap.js │ │ │ ├── ClassicBareMetal.js │ │ │ ├── ClassicGateways.js │ │ │ ├── ClassicMap.js │ │ │ ├── ClassicSecurityGroups.js │ │ │ ├── ClassicSubnets.js │ │ │ ├── ClassicVsi.js │ │ │ ├── DeploymentIcon.js │ │ │ ├── DocTabs.js │ │ │ ├── HoverClassNameWrapper.js │ │ │ ├── ManageService.js │ │ │ ├── Overview.js │ │ │ ├── PassthroughWrapper.js │ │ │ ├── PowerMap.js │ │ │ ├── PowerSubnet.js │ │ │ ├── PowerSubnetInnerBox.js │ │ │ ├── RgServiceMap.js │ │ │ ├── RoutingTables.js │ │ │ ├── ScollFormWrapper.js │ │ │ ├── ScrollForm.js │ │ │ ├── ScrollFormWrapper.js │ │ │ ├── SecurityGroups.js │ │ │ ├── SmallOverview.js │ │ │ ├── SshKeys.js │ │ │ ├── Subnet.js │ │ │ ├── SubnetRow.js │ │ │ ├── SubnetServiceMap.js │ │ │ ├── SubnetTierMap.js │ │ │ ├── TransitGatewaysMap.js │ │ │ ├── VpcMap.js │ │ │ ├── diagrams.css │ │ │ └── index.js │ │ ├── home.scss │ │ ├── import-json.css │ │ ├── index.js │ │ ├── json-docs.css │ │ ├── power │ │ │ ├── Power.js │ │ │ ├── PowerSshKeys.js │ │ │ ├── PowerSubnets.js │ │ │ ├── PowerVolumeTable.js │ │ │ └── PowerVolumes.js │ │ ├── projects │ │ │ ├── JSONModal.js │ │ │ ├── LoadingModal.js │ │ │ ├── ProjectFormModal.js │ │ │ ├── ProjectTile.js │ │ │ ├── Projects.js │ │ │ ├── README.md │ │ │ ├── Wizard.js │ │ │ └── project.css │ │ ├── releasenotes.scss │ │ ├── summary │ │ │ ├── README.md │ │ │ ├── Summary.js │ │ │ ├── SummaryContent.js │ │ │ └── summary.css │ │ ├── tutorial │ │ │ ├── Tutorial.js │ │ │ └── tutorial.css │ │ └── vpc │ │ │ ├── Connectivity.js │ │ │ ├── DynamicAclForm.js │ │ │ ├── DynamicSubnetTierForm.js │ │ │ ├── Vpc.js │ │ │ ├── VpcDeployments.js │ │ │ └── vpc.css │ └── utils │ │ ├── JSONTextArea.js │ │ ├── NoEdgeNetworkTile.js │ │ ├── NoSecretsManagerTile.js │ │ ├── TemplateAbout.js │ │ ├── composed-templates.js │ │ ├── downloadCopyButtons │ │ ├── DownloadConfig.js │ │ └── DownloadCopyButtonSet.js │ │ ├── index.js │ │ └── no-secrets-manager-tile.css │ ├── images │ ├── PowerSAP_HanaPattern.png │ ├── README.md │ ├── SapHanaPattern.png │ ├── VsiEdgePattern.png │ ├── VsiPattern.png │ ├── cbr.js │ ├── craig.png │ ├── craig404.png │ ├── craigNoBackground.png │ ├── create.png │ ├── delete.png │ ├── disabledsave.png │ ├── download.png │ ├── edge-network.png │ ├── empty.png │ ├── f5.png │ ├── invalid.png │ ├── mixed.png │ ├── oracle-rac.png │ ├── oracle-si.png │ ├── power-poc-classic.png │ ├── power-poc.png │ ├── quick-start-power.png │ ├── save.png │ ├── vpnaas.png │ └── vtl-quickstart.png │ ├── index.css │ ├── index.js │ ├── index.scss │ ├── lib │ ├── builders.js │ ├── changelog-to-markdown.js │ ├── components │ │ ├── copy-rules.js │ │ ├── docs.js │ │ ├── index.js │ │ └── toggle-form-components.js │ ├── constants.js │ ├── craig-app.js │ ├── craig-to-cdktf.js │ ├── docs-to-md.js │ ├── docs.js │ ├── docs │ │ ├── README.md │ │ ├── api-spec.yaml │ │ ├── default-template.json │ │ ├── docs.json │ │ ├── index.js │ │ ├── power-image-map-legacy.json │ │ ├── power-image-map.json │ │ ├── power-storage-pool-map.json │ │ ├── release-notes.json │ │ ├── schema.json │ │ └── templates │ │ │ ├── from-scratch.json │ │ │ ├── oracle-rac.json │ │ │ ├── oracle-si.json │ │ │ ├── power-poc-classic-quick-start.json │ │ │ ├── power-poc-quick-start.json │ │ │ ├── power-sap-hana.json │ │ │ ├── quick-start-power.json │ │ │ ├── slz-mixed.json │ │ │ ├── slz-vsi-edge.json │ │ │ ├── slz-vsi.json │ │ │ ├── vpn-as-a-service.json │ │ │ └── vtl-quick-start.json │ ├── forms │ │ ├── README.md │ │ ├── class-names.js │ │ ├── diagrams │ │ │ ├── filters.js │ │ │ ├── index.js │ │ │ ├── subnet-row.js │ │ │ ├── subnet-service-map.js │ │ │ └── subnet-tier-map.js │ │ ├── disable-save.js │ │ ├── dynamic-form-fields │ │ │ ├── craig-form-group.js │ │ │ ├── dynamic-tooltip-wrapper.js │ │ │ ├── filterable-multiselect.js │ │ │ ├── heading.js │ │ │ ├── icse-form-group.js │ │ │ ├── icse-heading.js │ │ │ ├── index.js │ │ │ ├── password-input.js │ │ │ ├── select.js │ │ │ ├── text-area.js │ │ │ ├── text-input.js │ │ │ ├── toggle.js │ │ │ └── utils.js │ │ ├── dynamic-subnet-tile-sub-form.js │ │ ├── filters.js │ │ ├── format-json.js │ │ ├── index.js │ │ ├── invalid-callbacks.js │ │ ├── overview.js │ │ ├── power-affinity.js │ │ ├── power-utils.js │ │ ├── power-volume-table.js │ │ ├── props-match-state.js │ │ ├── sap.js │ │ ├── state-data.js │ │ ├── text-callbacks.js │ │ ├── utils.js │ │ └── wizard.js │ ├── index.js │ ├── invalid-forms.js │ ├── json-to-iac │ │ ├── README.md │ │ ├── appid.js │ │ ├── atracker.js │ │ ├── cbr.js │ │ ├── cis-glb.js │ │ ├── cis.js │ │ ├── classic-bare-metal.js │ │ ├── classic-gateway.js │ │ ├── classic-security-group.js │ │ ├── classic-vsi.js │ │ ├── classic.js │ │ ├── cloud-logs.js │ │ ├── clusters.js │ │ ├── config-to-files-json.js │ │ ├── constants.js │ │ ├── defaults.js │ │ ├── dns.js │ │ ├── event-streams.js │ │ ├── f5.js │ │ ├── flow-logs.js │ │ ├── fortigate.js │ │ ├── iam.js │ │ ├── icd.js │ │ ├── index.js │ │ ├── key-management.js │ │ ├── logging-monitoring.js │ │ ├── object-storage.js │ │ ├── outputs.js │ │ ├── page-template.js │ │ ├── power-vs-instances.js │ │ ├── power-vs-volumes.js │ │ ├── power-vs.js │ │ ├── provider.js │ │ ├── resource-groups.js │ │ ├── routing-tables.js │ │ ├── sap-ansible.js │ │ ├── secrets-manager.js │ │ ├── security-groups.js │ │ ├── ssh-keys.js │ │ ├── transit-gateway.js │ │ ├── utils.js │ │ ├── variables.js │ │ ├── vpc.js │ │ ├── vpe.js │ │ ├── vpn-server.js │ │ ├── vpn.js │ │ └── vsi.js │ ├── nav-catagories.js │ ├── slz-to-craig.js │ ├── state │ │ ├── README.md │ │ ├── appid.js │ │ ├── atracker.js │ │ ├── cbr-rules.js │ │ ├── cbr-zones.js │ │ ├── cis-glb.js │ │ ├── cis.js │ │ ├── classic-bare-metal.js │ │ ├── classic-gateways.js │ │ ├── classic-security-groups.js │ │ ├── classic-vsi.js │ │ ├── classic.js │ │ ├── cloud-logs.js │ │ ├── clusters.js │ │ ├── copy-rules.js │ │ ├── cos.js │ │ ├── defaults.js │ │ ├── dns.js │ │ ├── event-streams.js │ │ ├── f5.js │ │ ├── fortigate.js │ │ ├── iam.js │ │ ├── icd.js │ │ ├── index.js │ │ ├── key-management.js │ │ ├── load-balancers.js │ │ ├── logging-monitoring.js │ │ ├── options.js │ │ ├── power-placement-groups.js │ │ ├── power-shared-processor-pools.js │ │ ├── power-vs-instances │ │ │ ├── power-instances-schema.js │ │ │ └── power-vs-instances.js │ │ ├── power-vs-volumes.js │ │ ├── power-vs │ │ │ ├── power-vs-cloud-connections-schema.js │ │ │ ├── power-vs-network-schema.js │ │ │ ├── power-vs-workspace-schema.js │ │ │ └── power-vs.js │ │ ├── resource-groups.js │ │ ├── reusable-fields.js │ │ ├── routing-tables.js │ │ ├── secrets-manager.js │ │ ├── security-groups.js │ │ ├── ssh-keys.js │ │ ├── state.js │ │ ├── store.utils.js │ │ ├── subnets.js │ │ ├── transit-gateways │ │ │ ├── gre-tunnel-schema.js │ │ │ ├── prefix-filters-schema.js │ │ │ └── transit-gateways.js │ │ ├── utils.js │ │ ├── vpc │ │ │ ├── subnets.js │ │ │ ├── vpc-schema.js │ │ │ └── vpc.js │ │ ├── vpe.js │ │ ├── vpn-servers.js │ │ ├── vpn.js │ │ ├── vsi.js │ │ └── vtl.js │ └── validate.js │ ├── serviceWorker.js │ └── unit-tests │ ├── Home.test.js │ └── ResourceGroups.test.js ├── deploy.sh ├── deploy ├── README.md ├── power_vs_workspaces │ ├── main.tf │ ├── outputs.tf │ ├── variables.tf │ └── versions.tf └── terraform.sh ├── express-controllers ├── cluster-api.js ├── controller.js ├── craig-api.js ├── power-api.js ├── schematics-api.js ├── stats-api.js └── vsi-api.js ├── express-routes └── routes.js ├── generate-env.sh ├── lib ├── changelog-as-markdown.js ├── cli-json-to-tf.js ├── docs-as-markdown.js ├── power-utils.js ├── tar-utils.js └── template-updater.js ├── next.config.ts ├── old ├── README.md ├── cdktf.js ├── cdktf.test.js ├── teleport.js └── teleport.test.js ├── package.json ├── renovate.json ├── server.js ├── template-test.sh └── unit-tests ├── api-refactor ├── cluster-api.test.js ├── power-api.test.js └── vsi-api.test.js ├── api ├── cluster-api.test.js ├── controller.test.js ├── craig-api.test.js ├── power-api.test.js ├── schematics-api.test.js ├── stats-api-test.js ├── stats-api.test.js └── vsi-api.test.js ├── changelog-to-markdown.test.js ├── components ├── copy-rules.test.js └── docs.test.js ├── craig-app.test.js ├── data-files ├── appid-scc-teleport-network.json ├── broken-subnets.json ├── cdktf-expected-hard-set.json ├── clusterFlavorRaw.json ├── clusterVersionRaw.json ├── component-text.md ├── config-to-files │ ├── modules-power-config-to-files.json │ ├── modules-power-config.json │ └── modules-slz-network-files.json ├── craig-cdktf.json ├── craig-from-slz-minimum-json.json ├── craig-json-routing-tables.json ├── craig-json.json ├── craig-stats.json ├── craig-subnet-scaling-broken.json ├── craig.cdktf.ts ├── craig.tar ├── every-component-fails.json ├── expected-hard-set.json ├── f5-config.json ├── f5-nw-files.json ├── f5-nw.json ├── slz-convert.json ├── slz-minimum-valid-json.json ├── slz-network.json ├── slz.md ├── sub-components-fail.json ├── vsiImagesRaw.json ├── vsiImagesRawPage2.json └── vsiInstanceProfilesRaw.json ├── docs-to-md.test.js ├── docs.test.js ├── forms ├── class-names.test.js ├── components │ └── toggle-form-components.test.js ├── diagrams │ ├── filters.test.js │ ├── subnet-row.test.js │ ├── subnet-service-map.test.js │ └── subnet-tier-map.test.js ├── disable-save.test.js ├── disable-save │ ├── access-groups.test.js │ ├── acl.test.js │ ├── atracker.test.js │ ├── cbr.test.js │ ├── classic-gateways.test.js │ ├── classic-ssh-keys.test.js │ ├── classic-vlans.test.js │ ├── clusters.test.js │ ├── dns.test.js │ ├── f5-vsi.test.js │ ├── iam-account-settings.test.js │ ├── icd.test.js │ ├── key-management.test.js │ ├── load-balancers.test.js │ ├── logging-monitoring.test.js │ ├── object-storage.test.js │ ├── options.test.js │ ├── power-volumes.test.js │ ├── power.test.js │ ├── resource-groups.test.js │ ├── reusable-fields.test.js │ ├── routing_tables.test.js │ ├── secrets-manager.test.js │ ├── security-groups.test.js │ ├── ssh-keys.test.js │ ├── subnets.test.js │ ├── transit-gateway.test.js │ ├── vpc.test.js │ ├── vpe.test.js │ ├── vpn-gateway.test.js │ ├── vpn-servers.test.js │ └── vsi.test.js ├── dynamic-form-fields │ ├── craig-form-group.test.js │ ├── dynamic-tooltip-wrapper.test.js │ ├── filterable-multiselect.test.js │ ├── heading.test.js │ ├── icse-form-group.test.js │ ├── icse-heading.test.js │ ├── password-input.test.js │ ├── select.test.js │ ├── text-area.test.js │ ├── text-input.test.js │ ├── toggle.test.js │ └── utils.test.js ├── dynamic-subnet-tile-sub-form.test.js ├── format-json.test.js ├── invalid-callbacks.test.js ├── overview.test.js ├── power-affinity.test.js ├── power-utils.test.js ├── power-volume-table.test.js ├── props-match-state.test.js ├── sap.test.js ├── state-data.test.js ├── text-callbacks.test.js ├── utils.test.js └── wizard.test.js ├── invalid-forms.test.js ├── json-to-iac ├── appid.test.js ├── atracker.test.js ├── cbr.test.js ├── cis-glb.test.js ├── cis.test.js ├── classic-bare-metal.test.js ├── classic-gateway.test.js ├── classic-security-group.test.js ├── classic-vsi.test.js ├── classic.test.js ├── cloud-logs.test.js ├── clusters.test.js ├── config-to-files-json.test.js ├── dns.test.js ├── event-streams.test.js ├── f5.test.js ├── flow-logs.test.js ├── fortigate.test.js ├── iam.test.js ├── icd.test.js ├── key-management.test.js ├── logging-monitoring.test.js ├── object-storage.test.js ├── outputs.test.js ├── page-template.test.js ├── power-vs-instances.test.js ├── power-vs-volumes.test.js ├── power-vs.test.js ├── provider.test.js ├── resource-groups.test.js ├── routing-table.test.js ├── sap-ansible.test.js ├── secrets-manager.test.js ├── security-groups.test.js ├── ssh-keys.test.js ├── transit-gateway.test.js ├── utils.test.js ├── variables.test.js ├── vpc.test.js ├── vpe.test.js ├── vpn-server.test.js ├── vpn.test.js └── vsi.test.js ├── mock.test.js ├── mocks ├── recursive-axios.mock.js └── response.mock.js ├── slz-to-craig.test.js ├── state ├── appid.test.js ├── atracker.test.js ├── cbr-rules.test.js ├── cbr-zones.test.js ├── cis-glb.test.js ├── cis.test.js ├── classic-bare-metal.test.js ├── classic-gateways.test.js ├── classic-security-groups.test.js ├── classic-vsi.test.js ├── classic.test.js ├── cloud-logs.test.js ├── clusters.test.js ├── dns.test.js ├── edge-network.test.js ├── event-streams.test.js ├── f5.test.js ├── fortigate.test.js ├── iam.test.js ├── icd.test.js ├── key-management.test.js ├── load-balancers.test.js ├── logging-monitoring.test.js ├── object-storage.test.js ├── options.test.js ├── power-affinity.test.js ├── power-placement-groups.test.js ├── power-shared-processor-pools.test.js ├── power-vs-instances.test.js ├── power-vs-volumes.test.js ├── power-vs.test.js ├── resource-groups.test.js ├── reusable-fields.test.js ├── routing-tables.test.js ├── schema.test.js ├── secrets-manager.test.js ├── security-groups.test.js ├── ssh-keys.test.js ├── state.test.js ├── transit-gateways.test.js ├── utils.test.js ├── vpc.test.js ├── vpcs.acls.test.js ├── vpe.test.js ├── vpn-servers.test.js ├── vpn.test.js ├── vsi.test.js └── vtl.test.js └── validate.test.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.dockerignore -------------------------------------------------------------------------------- /.docs/CRAIG-getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/CRAIG-getting-started.md -------------------------------------------------------------------------------- /.docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/README.md -------------------------------------------------------------------------------- /.docs/access-policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/access-policies.md -------------------------------------------------------------------------------- /.docs/craig-code-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/craig-code-engine.md -------------------------------------------------------------------------------- /.docs/dev-env-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/dev-env-setup.md -------------------------------------------------------------------------------- /.docs/images/CRAIG-download-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/CRAIG-download-icon.png -------------------------------------------------------------------------------- /.docs/images/CRAIG-usage-pattern.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/CRAIG-usage-pattern.drawio.png -------------------------------------------------------------------------------- /.docs/images/Update-project-enable-schematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/Update-project-enable-schematics.png -------------------------------------------------------------------------------- /.docs/images/Upload-to-schematics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/Upload-to-schematics.png -------------------------------------------------------------------------------- /.docs/images/craig-application-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/craig-application-panel.png -------------------------------------------------------------------------------- /.docs/images/craig-ce-imgbld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/craig-ce-imgbld.png -------------------------------------------------------------------------------- /.docs/images/craig-ce-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/craig-ce-project.png -------------------------------------------------------------------------------- /.docs/images/import-from-json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/import-from-json.png -------------------------------------------------------------------------------- /.docs/images/import-json-options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/import-json-options.png -------------------------------------------------------------------------------- /.docs/images/power-poc-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/power-poc-classic.png -------------------------------------------------------------------------------- /.docs/images/powervs-poc-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/powervs-poc-arch.png -------------------------------------------------------------------------------- /.docs/images/schematics-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/schematics-actions.png -------------------------------------------------------------------------------- /.docs/images/schematics-cost-estimate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/schematics-cost-estimate.png -------------------------------------------------------------------------------- /.docs/images/schematics-setting-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/images/schematics-setting-page.png -------------------------------------------------------------------------------- /.docs/poc-template-worksheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/poc-template-worksheet.md -------------------------------------------------------------------------------- /.docs/poc-templates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/poc-templates.md -------------------------------------------------------------------------------- /.docs/power-vs-workspace-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/power-vs-workspace-deployment.md -------------------------------------------------------------------------------- /.docs/powervs-poc-classic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/powervs-poc-classic.md -------------------------------------------------------------------------------- /.docs/powervs-poc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/powervs-poc.md -------------------------------------------------------------------------------- /.docs/running-terraform-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/running-terraform-files.md -------------------------------------------------------------------------------- /.docs/schematics-how-to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/schematics-how-to.md -------------------------------------------------------------------------------- /.docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.docs/troubleshooting.md -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.env.example -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/vulnerability-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.github/ISSUE_TEMPLATE/vulnerability-report.md -------------------------------------------------------------------------------- /.github/workflows/traffic_workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.github/workflows/traffic_workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.tekton/ci/ci-listener.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.tekton/ci/ci-listener.yml -------------------------------------------------------------------------------- /.tekton/ci/ci-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.tekton/ci/ci-pipeline.yml -------------------------------------------------------------------------------- /.tekton/pr/pr-listener.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.tekton/pr/pr-listener.yml -------------------------------------------------------------------------------- /.tekton/pr/pr-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.tekton/pr/pr-pipeline.yml -------------------------------------------------------------------------------- /.tekton/tasks/task-check-health.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.tekton/tasks/task-check-health.yml -------------------------------------------------------------------------------- /.tekton/tasks/task-deploy-to-code-engine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.tekton/tasks/task-deploy-to-code-engine.yml -------------------------------------------------------------------------------- /.tekton/tasks/task-publish-code-engine-deployable-mapping.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.tekton/tasks/task-publish-code-engine-deployable-mapping.yml -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/.whitesource -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/SECURITY.md -------------------------------------------------------------------------------- /access.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/access.sh -------------------------------------------------------------------------------- /ansible/all-templates/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/all-templates/main.yml -------------------------------------------------------------------------------- /ansible/template-test/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/action/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/action/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/action/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/action/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/action/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/action/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/action/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/action/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/action/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/action/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/action/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/await_action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/await_action/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/await_action/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for await_action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/await_action/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for await_action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/await_action/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/await_action/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/await_action/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/await_action/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/await_action/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/await_action/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/await_action/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/await_action/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for await_action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/create_schematics_action/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_action/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for create_schematics_action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_action/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for create_schematics_action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_action/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/create_schematics_action/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_action/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/create_schematics_action/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_action/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_action/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/create_schematics_action/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_action/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for create_schematics_action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/create_schematics_workspace/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_workspace/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for create_schematics_workspace 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_workspace/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for create_schematics_workspace 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_workspace/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/create_schematics_workspace/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_workspace/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/create_schematics_workspace/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_workspace/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_workspace/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/create_schematics_workspace/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/create_schematics_workspace/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for create_schematics_workspace 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/delete_schematics_workspace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/delete_schematics_workspace/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/delete_schematics_workspace/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for delete_schematics_workspace 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/delete_schematics_workspace/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for delete_schematics_workspace 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/delete_schematics_workspace/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/delete_schematics_workspace/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/delete_schematics_workspace/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/delete_schematics_workspace/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/delete_schematics_workspace/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/delete_schematics_workspace/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/delete_schematics_workspace/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/delete_schematics_workspace/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for delete_schematics_workspace 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/download_tar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/download_tar/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/download_tar/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for download_tar 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/download_tar/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for download_tar 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/download_tar/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/download_tar/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/download_tar/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/download_tar/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/download_tar/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/download_tar/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/download_tar/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/download_tar/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for download_tar 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/get_iam_token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/get_iam_token/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/get_iam_token/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for get_iam_token 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/get_iam_token/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for get_iam_token 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/get_iam_token/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/get_iam_token/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/get_iam_token/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/get_iam_token/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/get_iam_token/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/get_iam_token/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/get_iam_token/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/get_iam_token/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for get_iam_token 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/get_workspace_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/get_workspace_data/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/get_workspace_data/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for get_workspace_data 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/get_workspace_data/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for get_workspace_data 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/get_workspace_data/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/get_workspace_data/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/get_workspace_data/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/get_workspace_data/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/get_workspace_data/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/get_workspace_data/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/get_workspace_data/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/get_workspace_data/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for get_workspace_data 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/pause/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/pause/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/pause/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for pause 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/pause/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for pause 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/pause/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/pause/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/pause/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/pause/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/pause/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/pause/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/pause/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/pause/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for pause 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/run_schematics_action/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/run_schematics_action/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/run_schematics_action/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for run_schematics_action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/run_schematics_action/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for run_schematics_action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/run_schematics_action/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/run_schematics_action/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/run_schematics_action/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/run_schematics_action/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/run_schematics_action/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/run_schematics_action/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/run_schematics_action/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/run_schematics_action/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for run_schematics_action 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/update_variablestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/update_variablestore/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/update_variablestore/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for update_variablestore 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/update_variablestore/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for update_variablestore 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/update_variablestore/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/update_variablestore/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/update_variablestore/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/update_variablestore/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/update_variablestore/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/update_variablestore/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/update_variablestore/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/update_variablestore/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for update_variablestore 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/update_workspace_variables/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/update_workspace_variables/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/update_workspace_variables/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for update_vars_in_workspace 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/update_workspace_variables/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for update_vars_in_workspace 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/update_workspace_variables/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/update_workspace_variables/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/update_workspace_variables/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/update_workspace_variables/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/update_workspace_variables/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/update_workspace_variables/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/update_workspace_variables/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/update_workspace_variables/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for update_vars_in_workspace 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/upload_tar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/upload_tar/README.md -------------------------------------------------------------------------------- /ansible/template-test/roles/upload_tar/defaults/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # defaults file for upload_tar 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/upload_tar/handlers/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # handlers file for upload_tar 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/upload_tar/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/upload_tar/meta/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/upload_tar/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/upload_tar/tasks/main.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/upload_tar/tests/inventory: -------------------------------------------------------------------------------- 1 | localhost 2 | 3 | -------------------------------------------------------------------------------- /ansible/template-test/roles/upload_tar/tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/roles/upload_tar/tests/test.yml -------------------------------------------------------------------------------- /ansible/template-test/roles/upload_tar/vars/main.yml: -------------------------------------------------------------------------------- 1 | --- 2 | # vars file for upload_tar 3 | -------------------------------------------------------------------------------- /ansible/template-test/test-inside-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/test-inside-action.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/from-scratch.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/mixed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/template_override_vars/mixed.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/oracle-rac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/template_override_vars/oracle-rac.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/oracle-si.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/template_override_vars/oracle-si.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/power-vs-poc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/template_override_vars/power-vs-poc.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/power-vs-sap-hana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/template_override_vars/power-vs-sap-hana.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/quick-start-power.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/template_override_vars/quick-start-power.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/vpnaas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/template_override_vars/vpnaas.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/vsi-edge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/template_override_vars/vsi-edge.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/template_override_vars/vsi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/template_override_vars/vsi.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/vars.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/vars.template.yml -------------------------------------------------------------------------------- /ansible/template-test/vars/vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/ansible/template-test/vars/vars.yml -------------------------------------------------------------------------------- /client/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/.editorconfig -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/.npmrc -------------------------------------------------------------------------------- /client/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | lib 3 | es 4 | umd 5 | build 6 | dist 7 | -------------------------------------------------------------------------------- /client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/LICENSE -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/README.md -------------------------------------------------------------------------------- /client/craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/craco.config.js -------------------------------------------------------------------------------- /client/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/next.config.js -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/package.json -------------------------------------------------------------------------------- /client/public/craig-ibm-c-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/public/craig-ibm-c-rounded.png -------------------------------------------------------------------------------- /client/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/public/favicon.svg -------------------------------------------------------------------------------- /client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/public/index.html -------------------------------------------------------------------------------- /client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/public/manifest.json -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/Craig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/Craig.js -------------------------------------------------------------------------------- /client/src/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/app.scss -------------------------------------------------------------------------------- /client/src/app/[[...slug]]/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/app/[[...slug]]/client.js -------------------------------------------------------------------------------- /client/src/app/[[...slug]]/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/app/[[...slug]]/page.js -------------------------------------------------------------------------------- /client/src/app/craig-ibm-c-rounded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/app/craig-ibm-c-rounded.png -------------------------------------------------------------------------------- /client/src/app/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/app/favicon.svg -------------------------------------------------------------------------------- /client/src/app/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/app/layout.js -------------------------------------------------------------------------------- /client/src/app/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/app/manifest.json -------------------------------------------------------------------------------- /client/src/app/not-found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/app/not-found.js -------------------------------------------------------------------------------- /client/src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/README.md -------------------------------------------------------------------------------- /client/src/components/forms/CbrForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/CbrForm.js -------------------------------------------------------------------------------- /client/src/components/forms/CopyRuleForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/CopyRuleForm.js -------------------------------------------------------------------------------- /client/src/components/forms/DynamicForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/DynamicForm.js -------------------------------------------------------------------------------- /client/src/components/forms/EdgeNetworkingForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/EdgeNetworkingForm.js -------------------------------------------------------------------------------- /client/src/components/forms/ObservabilityForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/ObservabilityForm.js -------------------------------------------------------------------------------- /client/src/components/forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/README.md -------------------------------------------------------------------------------- /client/src/components/forms/copy-rule-form-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/copy-rule-form-page.css -------------------------------------------------------------------------------- /client/src/components/forms/duplicate-rules/AddClusterRules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/duplicate-rules/AddClusterRules.js -------------------------------------------------------------------------------- /client/src/components/forms/duplicate-rules/AddClusterRulesModalContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/duplicate-rules/AddClusterRulesModalContent.js -------------------------------------------------------------------------------- /client/src/components/forms/duplicate-rules/CopyAclModalContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/duplicate-rules/CopyAclModalContent.js -------------------------------------------------------------------------------- /client/src/components/forms/duplicate-rules/CopyRule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/duplicate-rules/CopyRule.js -------------------------------------------------------------------------------- /client/src/components/forms/duplicate-rules/CopyRuleObject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/duplicate-rules/CopyRuleObject.js -------------------------------------------------------------------------------- /client/src/components/forms/duplicate-rules/CopySgModalContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/duplicate-rules/CopySgModalContent.js -------------------------------------------------------------------------------- /client/src/components/forms/duplicate-rules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/duplicate-rules/README.md -------------------------------------------------------------------------------- /client/src/components/forms/duplicate-rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/duplicate-rules/index.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/DynamicDatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/DynamicDatePicker.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/DynamicFetchMultiSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/DynamicFetchMultiSelect.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/DynamicFetchSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/DynamicFetchSelect.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/NaclRulesSubForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/NaclRulesSubForm.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/OptionsButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/OptionsButton.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/PowerInterfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/PowerInterfaces.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/README.md -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/SgRuleSubForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/SgRuleSubForm.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/SubFormOverrideTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/SubFormOverrideTile.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/SubnetTileSubForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/SubnetTileSubForm.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/components.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/index.js -------------------------------------------------------------------------------- /client/src/components/forms/dynamic-form/tiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/dynamic-form/tiles.js -------------------------------------------------------------------------------- /client/src/components/forms/edge-network.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/edge-network.css -------------------------------------------------------------------------------- /client/src/components/forms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/index.js -------------------------------------------------------------------------------- /client/src/components/forms/network-rules-order-card/NetworkingRuleOrderCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/network-rules-order-card/NetworkingRuleOrderCard.js -------------------------------------------------------------------------------- /client/src/components/forms/network-rules-order-card/OrderCardDataTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/network-rules-order-card/OrderCardDataTable.js -------------------------------------------------------------------------------- /client/src/components/forms/network-rules-order-card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/network-rules-order-card/index.js -------------------------------------------------------------------------------- /client/src/components/forms/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/options.css -------------------------------------------------------------------------------- /client/src/components/forms/utils/CannotBeUndoneModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/CannotBeUndoneModal.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/CraigFormHeading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/CraigFormHeading.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/DeleteModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/DeleteModal.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/Docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/Docs.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/DynamicFormModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/DynamicFormModal.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/DynamicRender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/DynamicRender.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/FormGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/FormGroup.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/FormTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/FormTemplate.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/PopoverWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/PopoverWrapper.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/PrimaryButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/PrimaryButton.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/RenderForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/RenderForm.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/SecondaryButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/SecondaryButton.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/StatefulTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/StatefulTabs.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/StatelessFormWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/StatelessFormWrapper.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/ToggleForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/ToggleForm.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/ToggleFormComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/ToggleFormComponents.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/ToolTip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/ToolTip.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/UnsavedChangesModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/UnsavedChangesModal.js -------------------------------------------------------------------------------- /client/src/components/forms/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/forms/utils/index.js -------------------------------------------------------------------------------- /client/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/index.js -------------------------------------------------------------------------------- /client/src/components/modals/NavigationRedirectModal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/modals/NavigationRedirectModal.css -------------------------------------------------------------------------------- /client/src/components/modals/NavigationRedirectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/modals/NavigationRedirectModal.js -------------------------------------------------------------------------------- /client/src/components/page-template/BottomAbout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/BottomAbout.js -------------------------------------------------------------------------------- /client/src/components/page-template/CodeMirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/CodeMirror.js -------------------------------------------------------------------------------- /client/src/components/page-template/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/Footer.js -------------------------------------------------------------------------------- /client/src/components/page-template/LeftNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/LeftNav.js -------------------------------------------------------------------------------- /client/src/components/page-template/LeftNavItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/LeftNavItem.js -------------------------------------------------------------------------------- /client/src/components/page-template/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/Navigation.js -------------------------------------------------------------------------------- /client/src/components/page-template/NoProjectModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/NoProjectModal.js -------------------------------------------------------------------------------- /client/src/components/page-template/Notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/Notification.js -------------------------------------------------------------------------------- /client/src/components/page-template/PageTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/PageTemplate.js -------------------------------------------------------------------------------- /client/src/components/page-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/README.md -------------------------------------------------------------------------------- /client/src/components/page-template/ValidNavBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/ValidNavBox.js -------------------------------------------------------------------------------- /client/src/components/page-template/code-mirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/code-mirror.css -------------------------------------------------------------------------------- /client/src/components/page-template/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/footer.scss -------------------------------------------------------------------------------- /client/src/components/page-template/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/index.js -------------------------------------------------------------------------------- /client/src/components/page-template/navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/navigation.scss -------------------------------------------------------------------------------- /client/src/components/page-template/page-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/page-template/page-template.css -------------------------------------------------------------------------------- /client/src/components/pages/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/About.js -------------------------------------------------------------------------------- /client/src/components/pages/CraigForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/CraigForms.js -------------------------------------------------------------------------------- /client/src/components/pages/FormPages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/FormPages.js -------------------------------------------------------------------------------- /client/src/components/pages/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/Home.js -------------------------------------------------------------------------------- /client/src/components/pages/ImportJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/ImportJson.js -------------------------------------------------------------------------------- /client/src/components/pages/JsonDocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/JsonDocs.js -------------------------------------------------------------------------------- /client/src/components/pages/PageNotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/PageNotFound.js -------------------------------------------------------------------------------- /client/src/components/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/README.md -------------------------------------------------------------------------------- /client/src/components/pages/ReleaseNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/ReleaseNotes.js -------------------------------------------------------------------------------- /client/src/components/pages/ResetState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/ResetState.js -------------------------------------------------------------------------------- /client/src/components/pages/SimplePages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/SimplePages.js -------------------------------------------------------------------------------- /client/src/components/pages/SplashPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/SplashPage.js -------------------------------------------------------------------------------- /client/src/components/pages/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/Stats.js -------------------------------------------------------------------------------- /client/src/components/pages/about.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/about.scss -------------------------------------------------------------------------------- /client/src/components/pages/classic/Classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/classic/Classic.js -------------------------------------------------------------------------------- /client/src/components/pages/cloud-services/CloudServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/cloud-services/CloudServices.js -------------------------------------------------------------------------------- /client/src/components/pages/cloud-services/ManageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/cloud-services/ManageService.js -------------------------------------------------------------------------------- /client/src/components/pages/cloud-services/cloud-services.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/cloud-services/cloud-services.css -------------------------------------------------------------------------------- /client/src/components/pages/cloud-services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/cloud-services/index.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/AclMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/AclMap.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ClassicBareMetal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ClassicBareMetal.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ClassicGateways.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ClassicGateways.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ClassicMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ClassicMap.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ClassicSecurityGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ClassicSecurityGroups.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ClassicSubnets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ClassicSubnets.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ClassicVsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ClassicVsi.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/DeploymentIcon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/DeploymentIcon.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/DocTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/DocTabs.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/HoverClassNameWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/HoverClassNameWrapper.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ManageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ManageService.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/Overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/Overview.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/PassthroughWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/PassthroughWrapper.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/PowerMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/PowerMap.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/PowerSubnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/PowerSubnet.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/PowerSubnetInnerBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/PowerSubnetInnerBox.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/RgServiceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/RgServiceMap.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/RoutingTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/RoutingTables.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ScollFormWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ScollFormWrapper.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ScrollForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ScrollForm.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/ScrollFormWrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/ScrollFormWrapper.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/SecurityGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/SecurityGroups.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/SmallOverview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/SmallOverview.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/SshKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/SshKeys.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/Subnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/Subnet.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/SubnetRow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/SubnetRow.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/SubnetServiceMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/SubnetServiceMap.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/SubnetTierMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/SubnetTierMap.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/TransitGatewaysMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/TransitGatewaysMap.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/VpcMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/VpcMap.js -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/diagrams.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/diagrams.css -------------------------------------------------------------------------------- /client/src/components/pages/diagrams/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/diagrams/index.js -------------------------------------------------------------------------------- /client/src/components/pages/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/home.scss -------------------------------------------------------------------------------- /client/src/components/pages/import-json.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/import-json.css -------------------------------------------------------------------------------- /client/src/components/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/index.js -------------------------------------------------------------------------------- /client/src/components/pages/json-docs.css: -------------------------------------------------------------------------------- 1 | .kerning { 2 | line-height: 1.5; 3 | } 4 | -------------------------------------------------------------------------------- /client/src/components/pages/power/Power.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/power/Power.js -------------------------------------------------------------------------------- /client/src/components/pages/power/PowerSshKeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/power/PowerSshKeys.js -------------------------------------------------------------------------------- /client/src/components/pages/power/PowerSubnets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/power/PowerSubnets.js -------------------------------------------------------------------------------- /client/src/components/pages/power/PowerVolumeTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/power/PowerVolumeTable.js -------------------------------------------------------------------------------- /client/src/components/pages/power/PowerVolumes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/power/PowerVolumes.js -------------------------------------------------------------------------------- /client/src/components/pages/projects/JSONModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/projects/JSONModal.js -------------------------------------------------------------------------------- /client/src/components/pages/projects/LoadingModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/projects/LoadingModal.js -------------------------------------------------------------------------------- /client/src/components/pages/projects/ProjectFormModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/projects/ProjectFormModal.js -------------------------------------------------------------------------------- /client/src/components/pages/projects/ProjectTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/projects/ProjectTile.js -------------------------------------------------------------------------------- /client/src/components/pages/projects/Projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/projects/Projects.js -------------------------------------------------------------------------------- /client/src/components/pages/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/projects/README.md -------------------------------------------------------------------------------- /client/src/components/pages/projects/Wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/projects/Wizard.js -------------------------------------------------------------------------------- /client/src/components/pages/projects/project.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/projects/project.css -------------------------------------------------------------------------------- /client/src/components/pages/releasenotes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/releasenotes.scss -------------------------------------------------------------------------------- /client/src/components/pages/summary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/summary/README.md -------------------------------------------------------------------------------- /client/src/components/pages/summary/Summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/summary/Summary.js -------------------------------------------------------------------------------- /client/src/components/pages/summary/SummaryContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/summary/SummaryContent.js -------------------------------------------------------------------------------- /client/src/components/pages/summary/summary.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/summary/summary.css -------------------------------------------------------------------------------- /client/src/components/pages/tutorial/Tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/tutorial/Tutorial.js -------------------------------------------------------------------------------- /client/src/components/pages/tutorial/tutorial.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/tutorial/tutorial.css -------------------------------------------------------------------------------- /client/src/components/pages/vpc/Connectivity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/vpc/Connectivity.js -------------------------------------------------------------------------------- /client/src/components/pages/vpc/DynamicAclForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/vpc/DynamicAclForm.js -------------------------------------------------------------------------------- /client/src/components/pages/vpc/DynamicSubnetTierForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/vpc/DynamicSubnetTierForm.js -------------------------------------------------------------------------------- /client/src/components/pages/vpc/Vpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/vpc/Vpc.js -------------------------------------------------------------------------------- /client/src/components/pages/vpc/VpcDeployments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/pages/vpc/VpcDeployments.js -------------------------------------------------------------------------------- /client/src/components/pages/vpc/vpc.css: -------------------------------------------------------------------------------- 1 | .dynamic-form-modal { 2 | padding: 0.5rem; 3 | } 4 | -------------------------------------------------------------------------------- /client/src/components/utils/JSONTextArea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/utils/JSONTextArea.js -------------------------------------------------------------------------------- /client/src/components/utils/NoEdgeNetworkTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/utils/NoEdgeNetworkTile.js -------------------------------------------------------------------------------- /client/src/components/utils/NoSecretsManagerTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/utils/NoSecretsManagerTile.js -------------------------------------------------------------------------------- /client/src/components/utils/TemplateAbout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/utils/TemplateAbout.js -------------------------------------------------------------------------------- /client/src/components/utils/composed-templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/utils/composed-templates.js -------------------------------------------------------------------------------- /client/src/components/utils/downloadCopyButtons/DownloadConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/utils/downloadCopyButtons/DownloadConfig.js -------------------------------------------------------------------------------- /client/src/components/utils/downloadCopyButtons/DownloadCopyButtonSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/utils/downloadCopyButtons/DownloadCopyButtonSet.js -------------------------------------------------------------------------------- /client/src/components/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/utils/index.js -------------------------------------------------------------------------------- /client/src/components/utils/no-secrets-manager-tile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/components/utils/no-secrets-manager-tile.css -------------------------------------------------------------------------------- /client/src/images/PowerSAP_HanaPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/PowerSAP_HanaPattern.png -------------------------------------------------------------------------------- /client/src/images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/README.md -------------------------------------------------------------------------------- /client/src/images/SapHanaPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/SapHanaPattern.png -------------------------------------------------------------------------------- /client/src/images/VsiEdgePattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/VsiEdgePattern.png -------------------------------------------------------------------------------- /client/src/images/VsiPattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/VsiPattern.png -------------------------------------------------------------------------------- /client/src/images/cbr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/cbr.js -------------------------------------------------------------------------------- /client/src/images/craig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/craig.png -------------------------------------------------------------------------------- /client/src/images/craig404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/craig404.png -------------------------------------------------------------------------------- /client/src/images/craigNoBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/craigNoBackground.png -------------------------------------------------------------------------------- /client/src/images/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/create.png -------------------------------------------------------------------------------- /client/src/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/delete.png -------------------------------------------------------------------------------- /client/src/images/disabledsave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/disabledsave.png -------------------------------------------------------------------------------- /client/src/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/download.png -------------------------------------------------------------------------------- /client/src/images/edge-network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/edge-network.png -------------------------------------------------------------------------------- /client/src/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/empty.png -------------------------------------------------------------------------------- /client/src/images/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/f5.png -------------------------------------------------------------------------------- /client/src/images/invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/invalid.png -------------------------------------------------------------------------------- /client/src/images/mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/mixed.png -------------------------------------------------------------------------------- /client/src/images/oracle-rac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/oracle-rac.png -------------------------------------------------------------------------------- /client/src/images/oracle-si.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/oracle-si.png -------------------------------------------------------------------------------- /client/src/images/power-poc-classic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/power-poc-classic.png -------------------------------------------------------------------------------- /client/src/images/power-poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/power-poc.png -------------------------------------------------------------------------------- /client/src/images/quick-start-power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/quick-start-power.png -------------------------------------------------------------------------------- /client/src/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/save.png -------------------------------------------------------------------------------- /client/src/images/vpnaas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/vpnaas.png -------------------------------------------------------------------------------- /client/src/images/vtl-quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/images/vtl-quickstart.png -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/index.scss -------------------------------------------------------------------------------- /client/src/lib/builders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/builders.js -------------------------------------------------------------------------------- /client/src/lib/changelog-to-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/changelog-to-markdown.js -------------------------------------------------------------------------------- /client/src/lib/components/copy-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/components/copy-rules.js -------------------------------------------------------------------------------- /client/src/lib/components/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/components/docs.js -------------------------------------------------------------------------------- /client/src/lib/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/components/index.js -------------------------------------------------------------------------------- /client/src/lib/components/toggle-form-components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/components/toggle-form-components.js -------------------------------------------------------------------------------- /client/src/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/constants.js -------------------------------------------------------------------------------- /client/src/lib/craig-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/craig-app.js -------------------------------------------------------------------------------- /client/src/lib/craig-to-cdktf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/craig-to-cdktf.js -------------------------------------------------------------------------------- /client/src/lib/docs-to-md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs-to-md.js -------------------------------------------------------------------------------- /client/src/lib/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs.js -------------------------------------------------------------------------------- /client/src/lib/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/README.md -------------------------------------------------------------------------------- /client/src/lib/docs/api-spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/api-spec.yaml -------------------------------------------------------------------------------- /client/src/lib/docs/default-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/default-template.json -------------------------------------------------------------------------------- /client/src/lib/docs/docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/docs.json -------------------------------------------------------------------------------- /client/src/lib/docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/index.js -------------------------------------------------------------------------------- /client/src/lib/docs/power-image-map-legacy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/power-image-map-legacy.json -------------------------------------------------------------------------------- /client/src/lib/docs/power-image-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/power-image-map.json -------------------------------------------------------------------------------- /client/src/lib/docs/power-storage-pool-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/power-storage-pool-map.json -------------------------------------------------------------------------------- /client/src/lib/docs/release-notes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/release-notes.json -------------------------------------------------------------------------------- /client/src/lib/docs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/schema.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/from-scratch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/from-scratch.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/oracle-rac.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/oracle-rac.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/oracle-si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/oracle-si.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/power-poc-classic-quick-start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/power-poc-classic-quick-start.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/power-poc-quick-start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/power-poc-quick-start.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/power-sap-hana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/power-sap-hana.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/quick-start-power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/quick-start-power.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/slz-mixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/slz-mixed.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/slz-vsi-edge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/slz-vsi-edge.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/slz-vsi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/slz-vsi.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/vpn-as-a-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/vpn-as-a-service.json -------------------------------------------------------------------------------- /client/src/lib/docs/templates/vtl-quick-start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/docs/templates/vtl-quick-start.json -------------------------------------------------------------------------------- /client/src/lib/forms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/README.md -------------------------------------------------------------------------------- /client/src/lib/forms/class-names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/class-names.js -------------------------------------------------------------------------------- /client/src/lib/forms/diagrams/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/diagrams/filters.js -------------------------------------------------------------------------------- /client/src/lib/forms/diagrams/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/diagrams/index.js -------------------------------------------------------------------------------- /client/src/lib/forms/diagrams/subnet-row.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/diagrams/subnet-row.js -------------------------------------------------------------------------------- /client/src/lib/forms/diagrams/subnet-service-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/diagrams/subnet-service-map.js -------------------------------------------------------------------------------- /client/src/lib/forms/diagrams/subnet-tier-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/diagrams/subnet-tier-map.js -------------------------------------------------------------------------------- /client/src/lib/forms/disable-save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/disable-save.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/craig-form-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/craig-form-group.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/dynamic-tooltip-wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/dynamic-tooltip-wrapper.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/filterable-multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/filterable-multiselect.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/heading.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/icse-form-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/icse-form-group.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/icse-heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/icse-heading.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/index.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/password-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/password-input.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/select.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/text-area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/text-area.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/text-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/text-input.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/toggle.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-form-fields/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-form-fields/utils.js -------------------------------------------------------------------------------- /client/src/lib/forms/dynamic-subnet-tile-sub-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/dynamic-subnet-tile-sub-form.js -------------------------------------------------------------------------------- /client/src/lib/forms/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/filters.js -------------------------------------------------------------------------------- /client/src/lib/forms/format-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/format-json.js -------------------------------------------------------------------------------- /client/src/lib/forms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/index.js -------------------------------------------------------------------------------- /client/src/lib/forms/invalid-callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/invalid-callbacks.js -------------------------------------------------------------------------------- /client/src/lib/forms/overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/overview.js -------------------------------------------------------------------------------- /client/src/lib/forms/power-affinity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/power-affinity.js -------------------------------------------------------------------------------- /client/src/lib/forms/power-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/power-utils.js -------------------------------------------------------------------------------- /client/src/lib/forms/power-volume-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/power-volume-table.js -------------------------------------------------------------------------------- /client/src/lib/forms/props-match-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/props-match-state.js -------------------------------------------------------------------------------- /client/src/lib/forms/sap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/sap.js -------------------------------------------------------------------------------- /client/src/lib/forms/state-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/state-data.js -------------------------------------------------------------------------------- /client/src/lib/forms/text-callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/text-callbacks.js -------------------------------------------------------------------------------- /client/src/lib/forms/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/utils.js -------------------------------------------------------------------------------- /client/src/lib/forms/wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/forms/wizard.js -------------------------------------------------------------------------------- /client/src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/index.js -------------------------------------------------------------------------------- /client/src/lib/invalid-forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/invalid-forms.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/README.md -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/appid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/appid.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/atracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/atracker.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/cbr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/cbr.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/cis-glb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/cis-glb.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/cis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/cis.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/classic-bare-metal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/classic-bare-metal.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/classic-gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/classic-gateway.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/classic-security-group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/classic-security-group.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/classic-vsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/classic-vsi.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/classic.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/cloud-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/cloud-logs.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/clusters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/clusters.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/config-to-files-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/config-to-files-json.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/constants.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/defaults.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/dns.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/event-streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/event-streams.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/f5.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/flow-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/flow-logs.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/fortigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/fortigate.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/iam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/iam.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/icd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/icd.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/index.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/key-management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/key-management.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/logging-monitoring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/logging-monitoring.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/object-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/object-storage.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/outputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/outputs.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/page-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/page-template.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/power-vs-instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/power-vs-instances.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/power-vs-volumes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/power-vs-volumes.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/power-vs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/power-vs.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/provider.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/resource-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/resource-groups.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/routing-tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/routing-tables.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/sap-ansible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/sap-ansible.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/secrets-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/secrets-manager.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/security-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/security-groups.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/ssh-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/ssh-keys.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/transit-gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/transit-gateway.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/utils.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/variables.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/vpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/vpc.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/vpe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/vpe.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/vpn-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/vpn-server.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/vpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/vpn.js -------------------------------------------------------------------------------- /client/src/lib/json-to-iac/vsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/json-to-iac/vsi.js -------------------------------------------------------------------------------- /client/src/lib/nav-catagories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/nav-catagories.js -------------------------------------------------------------------------------- /client/src/lib/slz-to-craig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/slz-to-craig.js -------------------------------------------------------------------------------- /client/src/lib/state/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/README.md -------------------------------------------------------------------------------- /client/src/lib/state/appid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/appid.js -------------------------------------------------------------------------------- /client/src/lib/state/atracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/atracker.js -------------------------------------------------------------------------------- /client/src/lib/state/cbr-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/cbr-rules.js -------------------------------------------------------------------------------- /client/src/lib/state/cbr-zones.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/cbr-zones.js -------------------------------------------------------------------------------- /client/src/lib/state/cis-glb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/cis-glb.js -------------------------------------------------------------------------------- /client/src/lib/state/cis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/cis.js -------------------------------------------------------------------------------- /client/src/lib/state/classic-bare-metal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/classic-bare-metal.js -------------------------------------------------------------------------------- /client/src/lib/state/classic-gateways.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/classic-gateways.js -------------------------------------------------------------------------------- /client/src/lib/state/classic-security-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/classic-security-groups.js -------------------------------------------------------------------------------- /client/src/lib/state/classic-vsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/classic-vsi.js -------------------------------------------------------------------------------- /client/src/lib/state/classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/classic.js -------------------------------------------------------------------------------- /client/src/lib/state/cloud-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/cloud-logs.js -------------------------------------------------------------------------------- /client/src/lib/state/clusters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/clusters.js -------------------------------------------------------------------------------- /client/src/lib/state/copy-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/copy-rules.js -------------------------------------------------------------------------------- /client/src/lib/state/cos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/cos.js -------------------------------------------------------------------------------- /client/src/lib/state/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/defaults.js -------------------------------------------------------------------------------- /client/src/lib/state/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/dns.js -------------------------------------------------------------------------------- /client/src/lib/state/event-streams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/event-streams.js -------------------------------------------------------------------------------- /client/src/lib/state/f5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/f5.js -------------------------------------------------------------------------------- /client/src/lib/state/fortigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/fortigate.js -------------------------------------------------------------------------------- /client/src/lib/state/iam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/iam.js -------------------------------------------------------------------------------- /client/src/lib/state/icd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/icd.js -------------------------------------------------------------------------------- /client/src/lib/state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/index.js -------------------------------------------------------------------------------- /client/src/lib/state/key-management.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/key-management.js -------------------------------------------------------------------------------- /client/src/lib/state/load-balancers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/load-balancers.js -------------------------------------------------------------------------------- /client/src/lib/state/logging-monitoring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/logging-monitoring.js -------------------------------------------------------------------------------- /client/src/lib/state/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/options.js -------------------------------------------------------------------------------- /client/src/lib/state/power-placement-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/power-placement-groups.js -------------------------------------------------------------------------------- /client/src/lib/state/power-shared-processor-pools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/power-shared-processor-pools.js -------------------------------------------------------------------------------- /client/src/lib/state/power-vs-instances/power-instances-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/power-vs-instances/power-instances-schema.js -------------------------------------------------------------------------------- /client/src/lib/state/power-vs-instances/power-vs-instances.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/power-vs-instances/power-vs-instances.js -------------------------------------------------------------------------------- /client/src/lib/state/power-vs-volumes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/power-vs-volumes.js -------------------------------------------------------------------------------- /client/src/lib/state/power-vs/power-vs-cloud-connections-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/power-vs/power-vs-cloud-connections-schema.js -------------------------------------------------------------------------------- /client/src/lib/state/power-vs/power-vs-network-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/power-vs/power-vs-network-schema.js -------------------------------------------------------------------------------- /client/src/lib/state/power-vs/power-vs-workspace-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/power-vs/power-vs-workspace-schema.js -------------------------------------------------------------------------------- /client/src/lib/state/power-vs/power-vs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/power-vs/power-vs.js -------------------------------------------------------------------------------- /client/src/lib/state/resource-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/resource-groups.js -------------------------------------------------------------------------------- /client/src/lib/state/reusable-fields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/reusable-fields.js -------------------------------------------------------------------------------- /client/src/lib/state/routing-tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/routing-tables.js -------------------------------------------------------------------------------- /client/src/lib/state/secrets-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/secrets-manager.js -------------------------------------------------------------------------------- /client/src/lib/state/security-groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/security-groups.js -------------------------------------------------------------------------------- /client/src/lib/state/ssh-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/ssh-keys.js -------------------------------------------------------------------------------- /client/src/lib/state/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/state.js -------------------------------------------------------------------------------- /client/src/lib/state/store.utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/store.utils.js -------------------------------------------------------------------------------- /client/src/lib/state/subnets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/subnets.js -------------------------------------------------------------------------------- /client/src/lib/state/transit-gateways/gre-tunnel-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/transit-gateways/gre-tunnel-schema.js -------------------------------------------------------------------------------- /client/src/lib/state/transit-gateways/prefix-filters-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/transit-gateways/prefix-filters-schema.js -------------------------------------------------------------------------------- /client/src/lib/state/transit-gateways/transit-gateways.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/transit-gateways/transit-gateways.js -------------------------------------------------------------------------------- /client/src/lib/state/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/utils.js -------------------------------------------------------------------------------- /client/src/lib/state/vpc/subnets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/vpc/subnets.js -------------------------------------------------------------------------------- /client/src/lib/state/vpc/vpc-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/vpc/vpc-schema.js -------------------------------------------------------------------------------- /client/src/lib/state/vpc/vpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/vpc/vpc.js -------------------------------------------------------------------------------- /client/src/lib/state/vpe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/vpe.js -------------------------------------------------------------------------------- /client/src/lib/state/vpn-servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/vpn-servers.js -------------------------------------------------------------------------------- /client/src/lib/state/vpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/vpn.js -------------------------------------------------------------------------------- /client/src/lib/state/vsi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/vsi.js -------------------------------------------------------------------------------- /client/src/lib/state/vtl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/state/vtl.js -------------------------------------------------------------------------------- /client/src/lib/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/lib/validate.js -------------------------------------------------------------------------------- /client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/serviceWorker.js -------------------------------------------------------------------------------- /client/src/unit-tests/Home.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/unit-tests/Home.test.js -------------------------------------------------------------------------------- /client/src/unit-tests/ResourceGroups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/client/src/unit-tests/ResourceGroups.test.js -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/power_vs_workspaces/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/deploy/power_vs_workspaces/main.tf -------------------------------------------------------------------------------- /deploy/power_vs_workspaces/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/deploy/power_vs_workspaces/outputs.tf -------------------------------------------------------------------------------- /deploy/power_vs_workspaces/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/deploy/power_vs_workspaces/variables.tf -------------------------------------------------------------------------------- /deploy/power_vs_workspaces/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/deploy/power_vs_workspaces/versions.tf -------------------------------------------------------------------------------- /deploy/terraform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/deploy/terraform.sh -------------------------------------------------------------------------------- /express-controllers/cluster-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/express-controllers/cluster-api.js -------------------------------------------------------------------------------- /express-controllers/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/express-controllers/controller.js -------------------------------------------------------------------------------- /express-controllers/craig-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/express-controllers/craig-api.js -------------------------------------------------------------------------------- /express-controllers/power-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/express-controllers/power-api.js -------------------------------------------------------------------------------- /express-controllers/schematics-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/express-controllers/schematics-api.js -------------------------------------------------------------------------------- /express-controllers/stats-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/express-controllers/stats-api.js -------------------------------------------------------------------------------- /express-controllers/vsi-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/express-controllers/vsi-api.js -------------------------------------------------------------------------------- /express-routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/express-routes/routes.js -------------------------------------------------------------------------------- /generate-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/generate-env.sh -------------------------------------------------------------------------------- /lib/changelog-as-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/lib/changelog-as-markdown.js -------------------------------------------------------------------------------- /lib/cli-json-to-tf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/lib/cli-json-to-tf.js -------------------------------------------------------------------------------- /lib/docs-as-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/lib/docs-as-markdown.js -------------------------------------------------------------------------------- /lib/power-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/lib/power-utils.js -------------------------------------------------------------------------------- /lib/tar-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/lib/tar-utils.js -------------------------------------------------------------------------------- /lib/template-updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/lib/template-updater.js -------------------------------------------------------------------------------- /next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/next.config.ts -------------------------------------------------------------------------------- /old/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/old/README.md -------------------------------------------------------------------------------- /old/cdktf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/old/cdktf.js -------------------------------------------------------------------------------- /old/cdktf.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/old/cdktf.test.js -------------------------------------------------------------------------------- /old/teleport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/old/teleport.js -------------------------------------------------------------------------------- /old/teleport.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/old/teleport.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/renovate.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/server.js -------------------------------------------------------------------------------- /template-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/template-test.sh -------------------------------------------------------------------------------- /unit-tests/api-refactor/cluster-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api-refactor/cluster-api.test.js -------------------------------------------------------------------------------- /unit-tests/api-refactor/power-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api-refactor/power-api.test.js -------------------------------------------------------------------------------- /unit-tests/api-refactor/vsi-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api-refactor/vsi-api.test.js -------------------------------------------------------------------------------- /unit-tests/api/cluster-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api/cluster-api.test.js -------------------------------------------------------------------------------- /unit-tests/api/controller.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api/controller.test.js -------------------------------------------------------------------------------- /unit-tests/api/craig-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api/craig-api.test.js -------------------------------------------------------------------------------- /unit-tests/api/power-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api/power-api.test.js -------------------------------------------------------------------------------- /unit-tests/api/schematics-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api/schematics-api.test.js -------------------------------------------------------------------------------- /unit-tests/api/stats-api-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api/stats-api-test.js -------------------------------------------------------------------------------- /unit-tests/api/stats-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api/stats-api.test.js -------------------------------------------------------------------------------- /unit-tests/api/vsi-api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/api/vsi-api.test.js -------------------------------------------------------------------------------- /unit-tests/changelog-to-markdown.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/changelog-to-markdown.test.js -------------------------------------------------------------------------------- /unit-tests/components/copy-rules.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/components/copy-rules.test.js -------------------------------------------------------------------------------- /unit-tests/components/docs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/components/docs.test.js -------------------------------------------------------------------------------- /unit-tests/craig-app.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/craig-app.test.js -------------------------------------------------------------------------------- /unit-tests/data-files/appid-scc-teleport-network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/appid-scc-teleport-network.json -------------------------------------------------------------------------------- /unit-tests/data-files/broken-subnets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/broken-subnets.json -------------------------------------------------------------------------------- /unit-tests/data-files/cdktf-expected-hard-set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/cdktf-expected-hard-set.json -------------------------------------------------------------------------------- /unit-tests/data-files/clusterFlavorRaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/clusterFlavorRaw.json -------------------------------------------------------------------------------- /unit-tests/data-files/clusterVersionRaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/clusterVersionRaw.json -------------------------------------------------------------------------------- /unit-tests/data-files/component-text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/component-text.md -------------------------------------------------------------------------------- /unit-tests/data-files/config-to-files/modules-power-config-to-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/config-to-files/modules-power-config-to-files.json -------------------------------------------------------------------------------- /unit-tests/data-files/config-to-files/modules-power-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/config-to-files/modules-power-config.json -------------------------------------------------------------------------------- /unit-tests/data-files/config-to-files/modules-slz-network-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/config-to-files/modules-slz-network-files.json -------------------------------------------------------------------------------- /unit-tests/data-files/craig-cdktf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/craig-cdktf.json -------------------------------------------------------------------------------- /unit-tests/data-files/craig-from-slz-minimum-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/craig-from-slz-minimum-json.json -------------------------------------------------------------------------------- /unit-tests/data-files/craig-json-routing-tables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/craig-json-routing-tables.json -------------------------------------------------------------------------------- /unit-tests/data-files/craig-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/craig-json.json -------------------------------------------------------------------------------- /unit-tests/data-files/craig-stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/craig-stats.json -------------------------------------------------------------------------------- /unit-tests/data-files/craig-subnet-scaling-broken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/craig-subnet-scaling-broken.json -------------------------------------------------------------------------------- /unit-tests/data-files/craig.cdktf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/craig.cdktf.ts -------------------------------------------------------------------------------- /unit-tests/data-files/craig.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/craig.tar -------------------------------------------------------------------------------- /unit-tests/data-files/every-component-fails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/every-component-fails.json -------------------------------------------------------------------------------- /unit-tests/data-files/expected-hard-set.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/expected-hard-set.json -------------------------------------------------------------------------------- /unit-tests/data-files/f5-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/f5-config.json -------------------------------------------------------------------------------- /unit-tests/data-files/f5-nw-files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/f5-nw-files.json -------------------------------------------------------------------------------- /unit-tests/data-files/f5-nw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/f5-nw.json -------------------------------------------------------------------------------- /unit-tests/data-files/slz-convert.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/slz-convert.json -------------------------------------------------------------------------------- /unit-tests/data-files/slz-minimum-valid-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/slz-minimum-valid-json.json -------------------------------------------------------------------------------- /unit-tests/data-files/slz-network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/slz-network.json -------------------------------------------------------------------------------- /unit-tests/data-files/slz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/slz.md -------------------------------------------------------------------------------- /unit-tests/data-files/sub-components-fail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/sub-components-fail.json -------------------------------------------------------------------------------- /unit-tests/data-files/vsiImagesRaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/vsiImagesRaw.json -------------------------------------------------------------------------------- /unit-tests/data-files/vsiImagesRawPage2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/vsiImagesRawPage2.json -------------------------------------------------------------------------------- /unit-tests/data-files/vsiInstanceProfilesRaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/data-files/vsiInstanceProfilesRaw.json -------------------------------------------------------------------------------- /unit-tests/docs-to-md.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/docs-to-md.test.js -------------------------------------------------------------------------------- /unit-tests/docs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/docs.test.js -------------------------------------------------------------------------------- /unit-tests/forms/class-names.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/class-names.test.js -------------------------------------------------------------------------------- /unit-tests/forms/components/toggle-form-components.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/components/toggle-form-components.test.js -------------------------------------------------------------------------------- /unit-tests/forms/diagrams/filters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/diagrams/filters.test.js -------------------------------------------------------------------------------- /unit-tests/forms/diagrams/subnet-row.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/diagrams/subnet-row.test.js -------------------------------------------------------------------------------- /unit-tests/forms/diagrams/subnet-service-map.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/diagrams/subnet-service-map.test.js -------------------------------------------------------------------------------- /unit-tests/forms/diagrams/subnet-tier-map.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/diagrams/subnet-tier-map.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/access-groups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/access-groups.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/acl.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/acl.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/atracker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/atracker.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/cbr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/cbr.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/classic-gateways.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/classic-gateways.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/classic-ssh-keys.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/classic-ssh-keys.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/classic-vlans.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/classic-vlans.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/clusters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/clusters.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/dns.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/dns.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/f5-vsi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/f5-vsi.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/iam-account-settings.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/iam-account-settings.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/icd.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/icd.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/key-management.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/key-management.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/load-balancers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/load-balancers.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/logging-monitoring.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/logging-monitoring.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/object-storage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/object-storage.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/options.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/options.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/power-volumes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/power-volumes.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/power.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/power.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/resource-groups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/resource-groups.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/reusable-fields.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/reusable-fields.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/routing_tables.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/routing_tables.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/secrets-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/secrets-manager.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/security-groups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/security-groups.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/ssh-keys.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/ssh-keys.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/subnets.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/subnets.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/transit-gateway.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/transit-gateway.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/vpc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/vpc.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/vpe.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/vpe.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/vpn-gateway.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/vpn-gateway.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/vpn-servers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/vpn-servers.test.js -------------------------------------------------------------------------------- /unit-tests/forms/disable-save/vsi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/disable-save/vsi.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/craig-form-group.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/craig-form-group.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/dynamic-tooltip-wrapper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/dynamic-tooltip-wrapper.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/filterable-multiselect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/filterable-multiselect.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/heading.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/heading.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/icse-form-group.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/icse-form-group.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/icse-heading.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/icse-heading.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/password-input.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/password-input.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/select.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/select.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/text-area.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/text-area.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/text-input.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/text-input.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/toggle.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/toggle.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-form-fields/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-form-fields/utils.test.js -------------------------------------------------------------------------------- /unit-tests/forms/dynamic-subnet-tile-sub-form.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/dynamic-subnet-tile-sub-form.test.js -------------------------------------------------------------------------------- /unit-tests/forms/format-json.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/format-json.test.js -------------------------------------------------------------------------------- /unit-tests/forms/invalid-callbacks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/invalid-callbacks.test.js -------------------------------------------------------------------------------- /unit-tests/forms/overview.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/overview.test.js -------------------------------------------------------------------------------- /unit-tests/forms/power-affinity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/power-affinity.test.js -------------------------------------------------------------------------------- /unit-tests/forms/power-utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/power-utils.test.js -------------------------------------------------------------------------------- /unit-tests/forms/power-volume-table.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/power-volume-table.test.js -------------------------------------------------------------------------------- /unit-tests/forms/props-match-state.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/props-match-state.test.js -------------------------------------------------------------------------------- /unit-tests/forms/sap.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/sap.test.js -------------------------------------------------------------------------------- /unit-tests/forms/state-data.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/state-data.test.js -------------------------------------------------------------------------------- /unit-tests/forms/text-callbacks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/text-callbacks.test.js -------------------------------------------------------------------------------- /unit-tests/forms/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/utils.test.js -------------------------------------------------------------------------------- /unit-tests/forms/wizard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/forms/wizard.test.js -------------------------------------------------------------------------------- /unit-tests/invalid-forms.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/invalid-forms.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/appid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/appid.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/atracker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/atracker.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/cbr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/cbr.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/cis-glb.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/cis-glb.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/cis.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/cis.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/classic-bare-metal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/classic-bare-metal.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/classic-gateway.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/classic-gateway.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/classic-security-group.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/classic-security-group.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/classic-vsi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/classic-vsi.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/classic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/classic.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/cloud-logs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/cloud-logs.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/clusters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/clusters.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/config-to-files-json.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/config-to-files-json.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/dns.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/dns.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/event-streams.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/event-streams.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/f5.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/f5.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/flow-logs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/flow-logs.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/fortigate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/fortigate.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/iam.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/iam.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/icd.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/icd.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/key-management.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/key-management.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/logging-monitoring.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/logging-monitoring.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/object-storage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/object-storage.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/outputs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/outputs.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/page-template.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/page-template.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/power-vs-instances.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/power-vs-instances.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/power-vs-volumes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/power-vs-volumes.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/power-vs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/power-vs.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/provider.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/provider.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/resource-groups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/resource-groups.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/routing-table.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/routing-table.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/sap-ansible.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/sap-ansible.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/secrets-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/secrets-manager.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/security-groups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/security-groups.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/ssh-keys.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/ssh-keys.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/transit-gateway.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/transit-gateway.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/utils.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/variables.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/variables.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/vpc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/vpc.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/vpe.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/vpe.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/vpn-server.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/vpn-server.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/vpn.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/vpn.test.js -------------------------------------------------------------------------------- /unit-tests/json-to-iac/vsi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/json-to-iac/vsi.test.js -------------------------------------------------------------------------------- /unit-tests/mock.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/mock.test.js -------------------------------------------------------------------------------- /unit-tests/mocks/recursive-axios.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/mocks/recursive-axios.mock.js -------------------------------------------------------------------------------- /unit-tests/mocks/response.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/mocks/response.mock.js -------------------------------------------------------------------------------- /unit-tests/slz-to-craig.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/slz-to-craig.test.js -------------------------------------------------------------------------------- /unit-tests/state/appid.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/appid.test.js -------------------------------------------------------------------------------- /unit-tests/state/atracker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/atracker.test.js -------------------------------------------------------------------------------- /unit-tests/state/cbr-rules.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/cbr-rules.test.js -------------------------------------------------------------------------------- /unit-tests/state/cbr-zones.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/cbr-zones.test.js -------------------------------------------------------------------------------- /unit-tests/state/cis-glb.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/cis-glb.test.js -------------------------------------------------------------------------------- /unit-tests/state/cis.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/cis.test.js -------------------------------------------------------------------------------- /unit-tests/state/classic-bare-metal.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/classic-bare-metal.test.js -------------------------------------------------------------------------------- /unit-tests/state/classic-gateways.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/classic-gateways.test.js -------------------------------------------------------------------------------- /unit-tests/state/classic-security-groups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/classic-security-groups.test.js -------------------------------------------------------------------------------- /unit-tests/state/classic-vsi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/classic-vsi.test.js -------------------------------------------------------------------------------- /unit-tests/state/classic.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/classic.test.js -------------------------------------------------------------------------------- /unit-tests/state/cloud-logs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/cloud-logs.test.js -------------------------------------------------------------------------------- /unit-tests/state/clusters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/clusters.test.js -------------------------------------------------------------------------------- /unit-tests/state/dns.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/dns.test.js -------------------------------------------------------------------------------- /unit-tests/state/edge-network.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/edge-network.test.js -------------------------------------------------------------------------------- /unit-tests/state/event-streams.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/event-streams.test.js -------------------------------------------------------------------------------- /unit-tests/state/f5.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/f5.test.js -------------------------------------------------------------------------------- /unit-tests/state/fortigate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/fortigate.test.js -------------------------------------------------------------------------------- /unit-tests/state/iam.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/iam.test.js -------------------------------------------------------------------------------- /unit-tests/state/icd.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/icd.test.js -------------------------------------------------------------------------------- /unit-tests/state/key-management.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/key-management.test.js -------------------------------------------------------------------------------- /unit-tests/state/load-balancers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/load-balancers.test.js -------------------------------------------------------------------------------- /unit-tests/state/logging-monitoring.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/logging-monitoring.test.js -------------------------------------------------------------------------------- /unit-tests/state/object-storage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/object-storage.test.js -------------------------------------------------------------------------------- /unit-tests/state/options.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/options.test.js -------------------------------------------------------------------------------- /unit-tests/state/power-affinity.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/power-affinity.test.js -------------------------------------------------------------------------------- /unit-tests/state/power-placement-groups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/power-placement-groups.test.js -------------------------------------------------------------------------------- /unit-tests/state/power-shared-processor-pools.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/power-shared-processor-pools.test.js -------------------------------------------------------------------------------- /unit-tests/state/power-vs-instances.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/power-vs-instances.test.js -------------------------------------------------------------------------------- /unit-tests/state/power-vs-volumes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/power-vs-volumes.test.js -------------------------------------------------------------------------------- /unit-tests/state/power-vs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/power-vs.test.js -------------------------------------------------------------------------------- /unit-tests/state/resource-groups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/resource-groups.test.js -------------------------------------------------------------------------------- /unit-tests/state/reusable-fields.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/reusable-fields.test.js -------------------------------------------------------------------------------- /unit-tests/state/routing-tables.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/routing-tables.test.js -------------------------------------------------------------------------------- /unit-tests/state/schema.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/schema.test.js -------------------------------------------------------------------------------- /unit-tests/state/secrets-manager.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/secrets-manager.test.js -------------------------------------------------------------------------------- /unit-tests/state/security-groups.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/security-groups.test.js -------------------------------------------------------------------------------- /unit-tests/state/ssh-keys.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/ssh-keys.test.js -------------------------------------------------------------------------------- /unit-tests/state/state.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/state.test.js -------------------------------------------------------------------------------- /unit-tests/state/transit-gateways.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/transit-gateways.test.js -------------------------------------------------------------------------------- /unit-tests/state/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/utils.test.js -------------------------------------------------------------------------------- /unit-tests/state/vpc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/vpc.test.js -------------------------------------------------------------------------------- /unit-tests/state/vpcs.acls.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/vpcs.acls.test.js -------------------------------------------------------------------------------- /unit-tests/state/vpe.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/vpe.test.js -------------------------------------------------------------------------------- /unit-tests/state/vpn-servers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/vpn-servers.test.js -------------------------------------------------------------------------------- /unit-tests/state/vpn.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/vpn.test.js -------------------------------------------------------------------------------- /unit-tests/state/vsi.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/vsi.test.js -------------------------------------------------------------------------------- /unit-tests/state/vtl.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/state/vtl.test.js -------------------------------------------------------------------------------- /unit-tests/validate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/CRAIG/HEAD/unit-tests/validate.test.js --------------------------------------------------------------------------------