This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2022-03-25T16:11:22.975Z [INFO] backend/local: apply calling Apply | |
2022-03-25T16:11:22.976Z [INFO] terraform: building graph: GraphTypeApply | |
2022-03-25T16:11:22.977Z [DEBUG] Resource state not found for node "module.tenant_config.vault_identity_entity_alias.iam_test", instance module.tenant_config.vault_identity_entity_alias.iam_test | |
2022-03-25T16:11:22.978Z [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/vault"], implied first by module.tenant_config.data.vault_auth_backend.jwt (expand) | |
2022-03-25T16:11:22.978Z [DEBUG] adding implicit provider configuration provider["registry.terraform.io/hashicorp/null"], implied first by module.tenant_config.null_resource.tenant_api (expand) | |
2022-03-25T16:11:22.979Z [DEBUG] ProviderTransformer: "module.tenant_config.vault_identity_group_alias.ldap (expand)" (*terraform.nodeExpandApplyableResource) needs module.tenant_config.provider["registry.terraform.io/hashicorp/vault"] | |
2022-03-25T16:11:22.979Z [DEBUG] ProviderTransformer: "mod |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const Version = require('./../package.json').version; | |
const Hostname = require('os').hostname(); | |
const internals = { | |
handlers: {}, | |
}; | |
exports.register = function (server, options, next) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
require('dotenv').config({ silent: true }); | |
const Hapi = require('hapi'); | |
const Assert = require('assert'); | |
// Expect minimum env variables | |
Assert(process.env.NODE_ENV, 'expecting NODE_ENV'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Logger = Bunyan.createLogger({ | |
name: options.name, | |
level: 'trace', | |
streams: [ | |
{ stream: process.stdout }, | |
], | |
}); | |
const goodOptions = { | |
ops: { |