{"id":15044497,"url":"https://github.com/elastic/terraform-okta-aws","last_synced_at":"2025-10-19T21:30:18.521Z","repository":{"id":65978364,"uuid":"243658480","full_name":"elastic/terraform-okta-aws","owner":"elastic","description":"Terraform modules for configuring Okta SSO in AWS","archived":false,"fork":false,"pushed_at":"2024-08-08T19:28:21.000Z","size":329,"stargazers_count":7,"open_issues_count":0,"forks_count":6,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-10-06T00:34:56.196Z","etag":null,"topics":["conventions","okta","okta-aws","okta-integration","saml","terraform-modules"],"latest_commit_sha":null,"homepage":"","language":"HCL","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/elastic.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-02-28T02:07:19.000Z","updated_at":"2022-08-04T00:21:36.000Z","dependencies_parsed_at":"2025-02-04T23:32:37.444Z","dependency_job_id":"05669de8-6b49-4759-b26c-671745872599","html_url":"https://github.com/elastic/terraform-okta-aws","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/elastic/terraform-okta-aws","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic%2Fterraform-okta-aws","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic%2Fterraform-okta-aws/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic%2Fterraform-okta-aws/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic%2Fterraform-okta-aws/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/elastic","download_url":"https://codeload.github.com/elastic/terraform-okta-aws/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/elastic%2Fterraform-okta-aws/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279916193,"owners_count":26243612,"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","status":"online","status_checked_at":"2025-10-19T02:00:07.647Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["conventions","okta","okta-aws","okta-integration","saml","terraform-modules"],"created_at":"2024-09-24T20:50:39.364Z","updated_at":"2025-10-19T21:30:18.189Z","avatar_url":"https://github.com/elastic.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Okta AWS Terraform Modules\n\n![CI](https://github.com/elastic/terraform-okta-aws/workflows/CI/badge.svg)\n\n**NOTE**: This module uses Terraform 12 syntax. If you're using Terraform 11, see [Usage](#usage).\n\nThis repo contains Terraform modules for setting up/connecting AWS account(s) with an Okta AWS app. A Terraform module refers to a self-contained packages of Terraform configurations that are managed as a group. \n\nOkta's integration with Amazon Web Services (AWS) allows end users to authenticate to one or more AWS accounts and gain access to specific roles using single sign-on with SAML. \nFor a detailed explanation of Okta SSO setup with AWS, see the [Okta SAML 2.0 AWS Guide](https://saml-doc.okta.com/SAML_Docs/How-to-Configure-SAML-2.0-for-Amazon-Web-Service).\n\nThis module can be used to setup an account for both scenarios supported by Okta:\n* [*\"Connect Okta to a single AWS account\"*](https://saml-doc.okta.com/SAML_Docs/How-to-Configure-SAML-2.0-for-Amazon-Web-Service#scenarioA)\n* [*\"Connect Okta to multiple AWS accounts\"*](https://saml-doc.okta.com/SAML_Docs/How-to-Configure-SAML-2.0-for-Amazon-Web-Service#scenarioB)\n\n# Conventions\nThis module adheres to [Terraform Module Conventions](https://www.terraform.io/docs/modules/index.html) and has the following folder structure:\n\n* **modules**: This folder contains the reusable code for this Terraform Module, broken down into one or more submodules.\n* **examples** : This folder contains examples of how to use the submodules.\n\n# Contributing\n\n* Please create issues for bugs/feature requests.\n* Create issues before creating pull requests and reference them in the pull request (so there is proper context and justification for a change).\n* Follow the [Terraform Module Conventions](https://www.terraform.io/docs/modules/index.html) when contributing.\n\n# Versioning\n\nThis module follows semantic versioning. \n\n# Usage\n\nWhen using these modules in your own code, you will need to use a Git URL with a ref attribute that pins you to a specific \nversion of the modules, such as the following example:\n\n\n***Terraform 11***:\n```hcl-terraform\nmodule \"okta_master\" {\n  source = \"github.com/elastic/terraform-okta-aws.git/modules/master?ref=v0.1.1\"  \n}\n\nmodule \"okta_child\" {\n  source = \"github.com/elastic/terraform-okta-aws.git/modules/child?ref=v0.1.1\"  \n}\n```\n\n***Terraform 12***:\n```hcl-terraform\nmodule \"okta_master\" {\n  source = \"github.com/elastic/terraform-okta-aws.git/modules/master?ref=v1.1.1\"  \n}\n\nmodule \"okta_child\" {\n  source = \"github.com/elastic/terraform-okta-aws.git/modules/child?ref=v1.1.1\"  \n}\n```\n\n\nAfter completing the setup, AWS roles can be assumed from Okta:\n\u003cimg width=\"500px\" src=\"img/aws_login.png\"/\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felastic%2Fterraform-okta-aws","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Felastic%2Fterraform-okta-aws","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Felastic%2Fterraform-okta-aws/lists"}