Skip to content

Commit

Permalink
rename folder
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleOps committed Mar 13, 2024
1 parent 9d4c726 commit 33a66b8
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 41 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
41 changes: 41 additions & 0 deletions infra/aws-impl/manifests/ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: inferno-ingress
namespace: ${namespace}
annotations:
kubernetes.io/ingress.class: nginx
acme.cert-manager.io/http01-edit-in-place: 'true'
cert-manager.io/cluster-issuer: letsencrypt-prod
# nginx.ingress.kubernetes.io/rewrite-target: /$2 # infernos javascript does not work with base relative urls
spec:
ingressClassName: nginx
tls:
- hosts:
- inferno.hl7.org.au
secretName: inferno-tls
rules:
- host: inferno.hl7.org.au
http:
paths:
- path: /validator(/|$)(.*)
pathType: ImplementationSpecific
backend:
service:
name: inferno-fhir-validator
port:
number: 80
- path: /validatorapi(/|$)(.*)
pathType: ImplementationSpecific
backend:
service:
name: inferno-validator
port:
number: 4567
- path: /
pathType: Prefix
backend:
service:
name: inferno
port:
number: 4567
File renamed without changes.
5 changes: 5 additions & 0 deletions infra/aws/provider.tf → infra/aws-impl/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ provider "helm" {
token = data.aws_eks_cluster_auth.default.token
}
}
provider "aws" {
profile = "FHIR-Admin"
}


terraform {
required_version = ">= 1.3"
Expand All @@ -26,5 +30,6 @@ terraform {
bucket = "examplebucket-fhir-aws"
region = "ap-southeast-2"
key = "infra/inferno/dev.tfstate"
profile = "FHIR-Admin"
}
}
File renamed without changes.
41 changes: 0 additions & 41 deletions infra/aws/manifests/ingress.yaml

This file was deleted.

0 comments on commit 33a66b8

Please sign in to comment.