mirror of
https://github.com/sharkdp/bat.git
synced 2025-09-02 11:22:30 +01:00
Add Terraform example file for Syntax Highlighting
This commit is contained in:
committed by
David Peter
parent
13e01841ca
commit
44bfad24a1
48
tests/syntax-tests/source/Terraform/main.tf
Normal file
48
tests/syntax-tests/source/Terraform/main.tf
Normal file
@@ -0,0 +1,48 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user