this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: generate all credential files

+13 -6
+10 -3
infra/Makefile
··· 5 5 ~/.terraform.d/credentials.tfrc.json: 6 6 terraform login 7 7 8 - .terraform.lock.hcl: ~/.terraform.d/credentials.tfrc.json versions.tf modules 8 + ~/.oci: 9 + oci setup config 10 + 11 + .terraform.lock.hcl: ~/.terraform.d/credentials.tfrc.json ~/.oci versions.tf modules 9 12 terraform init 10 13 touch .terraform.lock.hcl 11 14 12 - plan: .terraform.lock.hcl 15 + terraform.tfvars: 16 + cp terraform.tfvars.example terraform.tfvars 17 + nvim terraform.tfvars 18 + 19 + plan: terraform.tfvars .terraform.lock.hcl 13 20 terraform plan 14 21 15 - apply: .terraform.lock.hcl 22 + apply: terraform.tfvars .terraform.lock.hcl 16 23 terraform apply
+2 -2
infra/modules/network/main.tf
··· 32 32 ingress_security_rules { 33 33 description = "SSH" 34 34 protocol = local.protocols["tcp"] 35 - source = "${chomp(data.http.public_ipv4.body)}/32" 35 + source = "${chomp(data.http.public_ipv4.response_body)}/32" 36 36 37 37 tcp_options { 38 38 source_port_range { ··· 48 48 ingress_security_rules { 49 49 description = "Kubernetes API" 50 50 protocol = local.protocols["tcp"] 51 - source = "${chomp(data.http.public_ipv4.body)}/32" 51 + source = "${chomp(data.http.public_ipv4.response_body)}/32" 52 52 53 53 tcp_options { 54 54 source_port_range {
+1 -1
infra/versions.tf
··· 1 1 terraform { 2 - required_version = "~> 1.2.0" 2 + required_version = "~> 1.4.0" 3 3 4 4 backend "remote" { 5 5 organization = "khuedoan"