Skip to content

Instantly share code, notes, and snippets.

View fragaLY's full-sized avatar
💭
"...ain't no such things as halfway crooks." Mobb Deep

Vadzim Kavalkou fragaLY

💭
"...ain't no such things as halfway crooks." Mobb Deep
View GitHub Profile
@fragaLY
fragaLY / application.yml
Created December 6, 2021 08:40
The hapi fhir jpa server configuration
server:
port: 8080
shutdown: graceful
undertow:
threads:
worker: 24
io: 3
error:
whitelabel:
enabled: false
@fragaLY
fragaLY / gist:5beadacb4753625adb89efb55534645a
Created October 27, 2022 20:30
[GCP] Automating the Deployment of Infrastructure Using Terraform
terraform --version
mkdir tfinfra
cd tfinfra
nano provider.tf
# provider "google" {} < should be added
terraform init
resource "google_compute_instance" "tf-instance-1" {
name = "tf-instance-1"
machine_type = "n1-standard-2"
zone = "us-east1-c"
allow_stopping_for_update = true
boot_disk {
initialize_params {
image = "debian-cloud/debian-10"
}