I am trying to create a repository in AWS Code-commit, i am able to create the repository but i am not able to clone github code into this created new repository.
This is the code i am using to create a repository
resource "aws_codecommit_repository" "test" {
repository_name = "MyTestRepository"
description = "This is the Sample App Repository"
}
i also want to clone a github repo into this new code-commit repo.
Here is the terraform code-commit page link for documentation https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/codecommit_repository