{"id":48211137,"url":"https://github.com/techservicesillinois/terraform-aws-acm-certificate","last_synced_at":"2026-04-04T18:48:34.992Z","repository":{"id":49200527,"uuid":"171925113","full_name":"techservicesillinois/terraform-aws-acm-certificate","owner":"techservicesillinois","description":"To manage the AWS ACM Certificate","archived":false,"fork":false,"pushed_at":"2024-03-08T21:57:12.000Z","size":12,"stargazers_count":1,"open_issues_count":2,"forks_count":2,"subscribers_count":10,"default_branch":"main","last_synced_at":"2024-03-08T22:39:10.676Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/techservicesillinois.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":"2019-02-21T18:41:07.000Z","updated_at":"2024-03-08T21:55:20.000Z","dependencies_parsed_at":"2022-08-31T16:43:54.263Z","dependency_job_id":null,"html_url":"https://github.com/techservicesillinois/terraform-aws-acm-certificate","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/techservicesillinois/terraform-aws-acm-certificate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-acm-certificate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-acm-certificate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-acm-certificate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-acm-certificate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/techservicesillinois","download_url":"https://codeload.github.com/techservicesillinois/terraform-aws-acm-certificate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/techservicesillinois%2Fterraform-aws-acm-certificate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31409470,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2026-04-04T18:48:34.398Z","updated_at":"2026-04-04T18:48:34.977Z","avatar_url":"https://github.com/techservicesillinois.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# acm-certificate \n\n[![Terraform actions status](https://github.com/techservicesillinois/terraform-aws-acm-certificate/workflows/terraform/badge.svg)](https://github.com/techservicesillinois/terraform-aws-acm-certificate/actions)\n\nProvides an ACM Certificate resource\n\nExample Usage\n-----------------\n\n### Route53 Hosted Domain\n\nThis configuration creates an ACM certificate for `bar.example.com` with `foo.example.com` as a subject \nalternative name (SAN). This example will automatically create DNS validation records in the example.com \nRoute53 zone.\n\n```hcl\nmodule \"route53\" {\n    source = \"git@github.com:techservicesillinois/terraform-aws-acm-certificate\"\n\n    domain   = \"example.com\"\n    hostname = \"bar\"\n\n    subject_alternative_names = [\n      \"foo.some.domain.name\"\n    ]\n\n}\n```\n\n### Domain not hosted by Route53\n\nThis configuration creates an ACM certificate for `authman.example.org` with `authbot.example.org` as a subject \nalternative name (SAN). This example requires manual creation of DNS records for certificate validations.\n\n```hcl\nmodule \"not_route53\" {\n    source = \"git@github.com:techservicesillinois/terraform-aws-acm-certificate\"\n \n    domain   = \"example.org\"\n    hostname = \"foo\"\n\n    subject_alternative_names = [ \n      \"bar.some.domain.name\"\n    ]\n\n   skip_route53_validation = true\n}\n```\n\nArgument Reference\n-----------------\n\nThe following arguments are supported:\n\n* `domain` - (Required) Domain name of the certificate.\n\n* `hostname` - (Required) Hostname of the certificate.\n\n* `validation_method` - Which method to use for validation. DNS or EMAIL are valid, NONE can be used for certificates that were imported into ACM and then into Terraform.\n\n* `subject_alternative_names` - A list of domains that should be SANs in the issued certificate\n\n* `skip_route53_validation` - Set to true to disable Route53 domain validation record creation. This is useful for zones not hosted in Route53 (Default is false).\n\n* `create_route53_record` - Create Route53 record if true. Set to false if Route53 record already exists (Default is true).\n\n* `tags` - A mapping of tags.\n\nAttributes Reference\n--------------------\n\nThe following attributes are exported:\n\n* `arn` - The ARN of the certificate\n* `domain_validation_options ` - A list of attributes to used to complete certificate validation\n\nImport\n--------------------\n\nA certificate can be imported using its ARN:\n\n```\nterraform import aws_acm_certificate.default arn:aws:acm:us-east2-1:123456789012:certificate/7e7a28d2-163f-4b8f-b9cd-822f96c08d6a\n```\n\n\nRoute53 Records can be imported using the ID of the record. The ID is made up as ZONEID_RECORDNAME_CNAME:\n\n```\nterraform import aws_route53_record.default ZE2XGDR9HNNCQ__6f02f830b9c923aca5a897d8ca5ba83b.multi-service.as-test.techservices.illinois.edu_CNAME\n```\n\nCredits\n--------------------\n\n**Nota bene** the vast majority of the verbiage on this page was\ntaken directly from the Terraform manual, and in a few cases from\nAmazon's documentation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechservicesillinois%2Fterraform-aws-acm-certificate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechservicesillinois%2Fterraform-aws-acm-certificate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechservicesillinois%2Fterraform-aws-acm-certificate/lists"}