chore: 修复metadata的一些bug

This commit is contained in:
xiaojunnuo
2026-01-14 02:05:31 +08:00
parent c776c34cfd
commit db453c8038
20 changed files with 731 additions and 730 deletions
@@ -1,10 +1,5 @@
import { AccessInput, BaseAccess, IsAccess } from '@certd/pipeline';
export const AwsCNRegions = [
{ label: 'cn-north-1', value: 'cn-north-1' },
{ label: 'cn-northwest-1', value: 'cn-northwest-1' },
];
@IsAccess({
name: 'aws-cn',
title: '亚马逊云科技(国区)授权',
@@ -0,0 +1,4 @@
export const AwsCNRegions = [
{ label: 'cn-north-1', value: 'cn-north-1' },
{ label: 'cn-northwest-1', value: 'cn-northwest-1' },
];
@@ -1,2 +1,3 @@
export * from './plugins/index.js';
export * from './access.js';
export * from './constants.js';
@@ -1,8 +1,10 @@
import { AbstractTaskPlugin, IsTaskPlugin, pluginGroups, RunStrategy, TaskInput } from "@certd/pipeline";
import { CertApplyPluginNames, CertInfo } from "@certd/plugin-cert";
import { AwsCNAccess, AwsCNRegions } from "../access.js";
import { AwsCNAccess } from "../access.js";
import { AwsIAMClient } from "../libs/aws-iam-client.js";
import { createCertDomainGetterInputDefine, createRemoteSelectInputDefine } from "@certd/plugin-lib";
import { AwsCNRegions } from '../constants.js';
@IsTaskPlugin({
name: 'AwsCNDeployToCloudFront',