diff --git a/pkg/infra/iac3/templates/aws/ecr_image/factory.ts b/pkg/infra/iac3/templates/aws/ecr_image/factory.ts index a46eee60c..2bea3f558 100644 --- a/pkg/infra/iac3/templates/aws/ecr_image/factory.ts +++ b/pkg/infra/iac3/templates/aws/ecr_image/factory.ts @@ -77,4 +77,4 @@ function properties(object: docker.Image, args: Args) { return { ImageName: object.imageName, } -} \ No newline at end of file +} diff --git a/pkg/infra/iac3/templates/aws/eks_cluster/factory.ts b/pkg/infra/iac3/templates/aws/eks_cluster/factory.ts index 165a82f41..7bd6947ef 100644 --- a/pkg/infra/iac3/templates/aws/eks_cluster/factory.ts +++ b/pkg/infra/iac3/templates/aws/eks_cluster/factory.ts @@ -27,4 +27,4 @@ function properties(object: aws.eks.Cluster, args: Args) { CertificateAuthorityData: object.certificateAuthorities[0].data, ClusterSecurityGroup: object.vpcConfig.clusterSecurityGroupId, } -} \ No newline at end of file +} diff --git a/pkg/infra/iac3/templates/aws/eks_fargate_profile/factory.ts b/pkg/infra/iac3/templates/aws/eks_fargate_profile/factory.ts index e6cd8cef1..ea206f145 100644 --- a/pkg/infra/iac3/templates/aws/eks_fargate_profile/factory.ts +++ b/pkg/infra/iac3/templates/aws/eks_fargate_profile/factory.ts @@ -7,7 +7,9 @@ interface Args { Subnets: aws.ec2.Subnet[] Cluster: aws.eks.Cluster PodExecutionRole: aws.iam.Role - Selectors: TemplateWrapper[]>> + Selectors: TemplateWrapper< + pulumi.Input[]> + > } // noinspection JSUnusedLocalSymbols diff --git a/pkg/infra/iac3/templates/aws/iam_oidc_provider/factory.ts b/pkg/infra/iac3/templates/aws/iam_oidc_provider/factory.ts index 8a35ae9fb..e5d668a00 100644 --- a/pkg/infra/iac3/templates/aws/iam_oidc_provider/factory.ts +++ b/pkg/infra/iac3/templates/aws/iam_oidc_provider/factory.ts @@ -33,4 +33,4 @@ function properties(object: aws.iam.OpenIdConnectProvider, args: Args) { Sub: `${object.url}:sub`, Aud: `${object.url}:aud`, } -} \ No newline at end of file +} diff --git a/pkg/infra/iac3/templates/aws/iam_role/factory.ts b/pkg/infra/iac3/templates/aws/iam_role/factory.ts index 8c0c479b0..6246612d4 100644 --- a/pkg/infra/iac3/templates/aws/iam_role/factory.ts +++ b/pkg/infra/iac3/templates/aws/iam_role/factory.ts @@ -35,4 +35,4 @@ function properties(object: aws.iam.Role, args: Args) { return { Arn: object.arn, } -} \ No newline at end of file +} diff --git a/pkg/infra/iac3/templates/aws/region/factory.ts b/pkg/infra/iac3/templates/aws/region/factory.ts index 51a189025..46d4aa5f8 100644 --- a/pkg/infra/iac3/templates/aws/region/factory.ts +++ b/pkg/infra/iac3/templates/aws/region/factory.ts @@ -8,8 +8,11 @@ function create(args: Args): pulumi.Output>, args: Args) { +function properties( + object: pulumi.Output>, + args: Args +) { return { - Name: object.apply(o => o.name), + Name: object.apply((o) => o.name), } -} \ No newline at end of file +} diff --git a/pkg/infra/iac3/templates/aws/target_group/factory.ts b/pkg/infra/iac3/templates/aws/target_group/factory.ts index 26580776e..c056f3d82 100644 --- a/pkg/infra/iac3/templates/aws/target_group/factory.ts +++ b/pkg/infra/iac3/templates/aws/target_group/factory.ts @@ -40,4 +40,4 @@ function properties(object: aws.lb.TargetGroup, args: Args) { return { Arn: object.arn, } -} \ No newline at end of file +} diff --git a/pkg/infra/iac3/templates/aws/vpc/factory.ts b/pkg/infra/iac3/templates/aws/vpc/factory.ts index d2abfb933..d354a4277 100644 --- a/pkg/infra/iac3/templates/aws/vpc/factory.ts +++ b/pkg/infra/iac3/templates/aws/vpc/factory.ts @@ -23,4 +23,4 @@ function properties(object: aws.ec2.Vpc, args: Args) { return { Id: object.id, } -} \ No newline at end of file +} diff --git a/pkg/infra/iac3/templates/kubernetes/kube_config/factory.ts b/pkg/infra/iac3/templates/kubernetes/kube_config/factory.ts index 79a40878a..d44657084 100644 --- a/pkg/infra/iac3/templates/kubernetes/kube_config/factory.ts +++ b/pkg/infra/iac3/templates/kubernetes/kube_config/factory.ts @@ -21,4 +21,4 @@ function create(args: Args): pulumi.Output { kind: args.kind, users: args.users, }) -} \ No newline at end of file +} diff --git a/pkg/infra/iac3/templates/kubernetes/manifest/factory.ts b/pkg/infra/iac3/templates/kubernetes/manifest/factory.ts index 4a12d541f..26668d860 100644 --- a/pkg/infra/iac3/templates/kubernetes/manifest/factory.ts +++ b/pkg/infra/iac3/templates/kubernetes/manifest/factory.ts @@ -5,7 +5,7 @@ interface Args { Name: string FilePath: string Transformations?: Record> - Provider: pulumi_k8s.Provider + Provider: pulumi_k8s.Provider dependsOn?: pulumi.Input[]> | pulumi.Input }