{"id":20853751,"url":"https://github.com/wolfeidau/serverless-acm-approver","last_synced_at":"2025-05-12T05:31:36.860Z","repository":{"id":57529621,"uuid":"242852324","full_name":"wolfeidau/serverless-acm-approver","owner":"wolfeidau","description":"This serverless application provides an acm approver function.","archived":false,"fork":false,"pushed_at":"2020-05-07T23:53:29.000Z","size":99,"stargazers_count":7,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-01T01:19:13.190Z","etag":null,"topics":["acm","aws","golang","lambda","serverless-application-repository"],"latest_commit_sha":null,"homepage":"https://github.com/wolfeidau/serverless-acm-approver","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wolfeidau.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-02-24T21:55:46.000Z","updated_at":"2023-03-21T08:53:46.000Z","dependencies_parsed_at":"2022-08-26T03:51:27.510Z","dependency_job_id":null,"html_url":"https://github.com/wolfeidau/serverless-acm-approver","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfeidau%2Fserverless-acm-approver","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfeidau%2Fserverless-acm-approver/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfeidau%2Fserverless-acm-approver/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wolfeidau%2Fserverless-acm-approver/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wolfeidau","download_url":"https://codeload.github.com/wolfeidau/serverless-acm-approver/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253682196,"owners_count":21946897,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["acm","aws","golang","lambda","serverless-application-repository"],"created_at":"2024-11-18T03:23:02.920Z","updated_at":"2025-05-12T05:31:33.823Z","avatar_url":"https://github.com/wolfeidau.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# serverless-acm-approver\n\nThis serverless application provides an acm approver function which uses route53 to aid in the automated creation of an acm certificate.\n\n[![GitHub Actions status](https://github.com/wolfeidau/serverless-acm-approver/workflows/Go/badge.svg?branch=master)](https://github.com/wolfeidau/serverless-acm-approver/actions?query=workflow%3AGo)\n[![Go Report Card](https://goreportcard.com/badge/github.com/wolfeidau/serverless-acm-approver)](https://goreportcard.com/report/github.com/wolfeidau/serverless-acm-approver)\n[![Documentation](https://godoc.org/github.com/wolfeidau/serverless-acm-approver?status.svg)](https://godoc.org/github.com/wolfeidau/serverless-acm-approver)\n\n# Why?\n\nThe approvers I have used in the past were either limited to creation only, or rather limited in their monitoring / reporting of errors.\n\nThis is heavily inspired by the acm [approver lambda](https://github.com/aws/aws-cdk/blob/master/packages/%40aws-cdk/aws-certificatemanager/lambda-packages/dns_validated_certificate_handler/lib/index.js) which is packaged with [AWS CDK](https://github.com/aws/aws-cdk).\n\nAlso lots of ideas came from [b-b3rn4rd/acm-approver-lambda](https://github.com/b-b3rn4rd/acm-approver-lambda).\n\n# Usage\n\nThe following template illustrates how to use this [serverless application](https://serverlessrepo.aws.amazon.com/applications/arn:aws:serverlessrepo:us-east-1:170889777468:applications~serverless-acm-approver).\n\n```yaml\nAWSTemplateFormatVersion: '2010-09-09'\nTransform: 'AWS::Serverless-2016-10-31'\nDescription: \u003e-\n  This template demonstrates how to use the serverless-acm-approver application.\n\nParameters:\n  DomainName:\n    Type: String\n  HostedZoneId:\n    Type: String\n  SubjectAlternativeNames:\n    Type: CommaDelimitedList\n\nResources:\n  ServerlessACMApprover:\n    Type: 'AWS::Serverless::Application'\n    Properties:\n      Location:\n        ApplicationId: arn:aws:serverlessrepo:us-east-1:170889777468:applications/serverless-acm-approver\n        SemanticVersion: 1.2.1\n      Parameters:\n        #  DomainName (FQDN) is limited to 64 characters in total\n        DomainName: !Ref DomainName\n        HostedZoneId: !Ref HostedZoneId\n        # Each Subject Alternative Names (SAN) can be up to 253 characters long\n        SubjectAlternativeNames:\n          !Join\n            - \",\"\n            - Ref: SubjectAlternativeNames\n        # Optional region to enable creation of ACM certificates in us-east-1 for cloudfront...\n        # Region: us-east-1 \n\nOutputs:\n  CertificateArn:\n    Description: \"Certificate ARN\"\n    Value: !GetAtt ServerlessACMApprover.Outputs.CertificateArn\n```\n\n# License\n\nThis application is released under Apache 2.0 license and is copyright Mark Wolfe.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolfeidau%2Fserverless-acm-approver","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwolfeidau%2Fserverless-acm-approver","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwolfeidau%2Fserverless-acm-approver/lists"}