@activatedio/cdktf-google
Version:
TypeScript library for CDKTF for google
77 lines • 3.34 kB
JavaScript
;
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.VerifiedCertificate = void 0;
const constructs_1 = require("constructs");
const google = __importStar(require("@cdktf/provider-google"));
const cdktf_1 = require("cdktf");
class VerifiedCertificate extends constructs_1.Construct {
certificate;
domains;
constructor(scope, id, props) {
super(scope, id);
const zone = new google.dataGoogleDnsManagedZone.DataGoogleDnsManagedZone(this, 'zone', {
name: props.zoneName,
project: props.zoneProject,
});
const dnsName = cdktf_1.Fn.trimsuffix(zone.dnsName, '.');
const fullName = props.name ? `${props.name}.${dnsName}` : dnsName;
const fullNameSafe = cdktf_1.Fn.replace(fullName.replace('*', 'star'), '.', '-');
const auth = new google.certificateManagerDnsAuthorization.CertificateManagerDnsAuthorization(this, 'authorization', {
domain: fullName.replace('*.', ''),
name: fullNameSafe,
});
this.domains = props.name.includes('*') ? [fullName, fullName.replace('*.', '')] : [fullName];
this.certificate =
new google.certificateManagerCertificate.CertificateManagerCertificate(this, 'cert', {
name: fullNameSafe,
managed: {
// We include the apex along with any wildcard
domains: this.domains,
dnsAuthorizations: [auth.id],
},
});
new google.dnsRecordSet.DnsRecordSet(this, 'recordSet', {
project: props.zoneProject,
type: auth.dnsResourceRecord.get(0).type,
managedZone: zone.name,
ttl: 300,
name: auth.dnsResourceRecord.get(0).name,
rrdatas: [auth.dnsResourceRecord.get(0).data],
});
}
}
exports.VerifiedCertificate = VerifiedCertificate;
//# sourceMappingURL=verifiedcertificate.js.map