@pulumi/awsx
Version:
[](https://github.com/pulumi/pulumi-awsx/actions) [](https://slack.pulumi.com) [;
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.TargetGroup = void 0;
// tslint:disable:max-line-length
const aws = __importStar(require("@pulumi/aws"));
const pulumi = __importStar(require("@pulumi/pulumi"));
const targetGroupAttachment_1 = require("./targetGroupAttachment");
const utils = __importStar(require("../utils"));
class TargetGroup extends pulumi.ComponentResource {
loadBalancer;
targetGroup;
vpc;
listeners = [];
constructor(type, name, loadBalancer, args, opts) {
// We want our parent to the be the ALB by default if nothing else is specified.
// Create an alias from our old name where we didn't parent by default to keep
// resources from being created/destroyed.
super(type, name, {}, {
parent: loadBalancer,
...pulumi.mergeOptions(opts, { aliases: [{ parent: opts.parent }] }),
});
this.vpc = args.vpc;
// We used to hash the name of an TG to keep the name short. This was necessary back when
// people didn't have direct control over creating the TG. In awsx though creating the TG
// is easy to do, so we just let the user pass in the name they want. We simply add an
// alias from the old name to the new one to keep things from being recreated.
this.targetGroup = args.targetGroup || new aws.lb.TargetGroup(name, {
...args,
vpcId: this.vpc.id,
protocol: utils.ifUndefined(args.protocol, "HTTP"),
deregistrationDelay: utils.ifUndefined(args.deregistrationDelay, 300),
targetType: utils.ifUndefined(args.targetType, "ip"),
tags: utils.mergeTags(args.tags, { Name: name }),
}, {
parent: this,
aliases: [{ name: args.name || utils.sha1hash(name) }],
});
this.loadBalancer = loadBalancer;
}
dependencies() {
// Return an output that depends on our listeners. That way anything that depends on us
// will only proceed once our load balancer connections have been created.
return pulumi.output(this.listeners.map(r => r.listener.urn));
}
/** @internal */
async getListenersAsync() {
return this.listeners;
}
containerPortMapping() {
return pulumi.output([this.targetGroup.port, this.dependencies()]).apply(([port]) => ({
containerPort: +port,
}));
}
containerLoadBalancer() {
return this.dependencies().apply(_ => ({
containerPort: this.targetGroup.port.apply(p => p),
targetGroupArn: this.targetGroup.arn,
}));
}
listenerDefaultAction() {
return this.dependencies().apply(_ => ({
targetGroupArn: this.targetGroup.arn,
type: "forward",
}));
}
actions() {
return [this.listenerDefaultAction()];
}
/** Do not call directly. Intended for use by [Listener] and [ListenerRule] */
registerListener(listener) {
this.listeners.push(listener);
}
/**
* Attaches a target to this target group. See
* [Register-Targets](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/target-group-register-targets.html)
* for more details.
*/
attachTarget(name, args, opts = {}) {
return new targetGroupAttachment_1.TargetGroupAttachment(name, this, args, opts);
}
}
exports.TargetGroup = TargetGroup;
//# sourceMappingURL=targetGroup.js.map