You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bat/tests/syntax-tests/highlighted/Terraform/main.tf

49 lines
7.1 KiB
HCL

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

provider "github" {
 organization = var.github_organization
}
resource "tls_private_key" "deploy_key" {
 algorithm = "RSA"
 rsa_bits = "4096"
}
resource "null_resource" "private_key_file" {
 triggers = {
 deploy_key = tls_private_key.deploy_key.private_key_pem
 }
 provisioner "file" {
 content = tls_private_key.deploy_key.private_key_pem
 destination = "~/${var.repo_name}_deploy_key.pem"
 connection {
 type = "ssh"
 user = "centos"
 private_key = var.terraform_ssh_key
 host = var.server_ip
 }
 }
 provisioner "remote-exec" {
 inline = [
 "sudo mv ~/${var.repo_name}_deploy_key.pem /app/ssh_keys/",
 "sudo chmod 0400 /app/ssh_keys/${var.repo_name}_deploy_key.pem",
 "sudo chown app:app /app/ssh_keys/${var.repo_name}_deploy_key.pem",
 ]
 connection {
 type = "ssh"
 user = "centos"
 private_key = var.terraform_ssh_key
 host = var.server_ip
 }
 }
}
resource "github_repository_deploy_key" "repo_deploy_key" {
 title = "${var.env_name} Deploy Key"
 repository = var.repo_name
 key = tls_private_key.deploy_key.public_key_openssh
 read_only = var.read_only
}