Skip to content

Commit

Permalink
fix tf error for sensitive output
Browse files Browse the repository at this point in the history
  • Loading branch information
floreks committed Dec 10, 2024
1 parent d061c58 commit 39d6e5f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
9 changes: 8 additions & 1 deletion catalogs/data/airbyte/helm/values.yaml.liquid
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{% raw %}
global:
deploymentMode: "oss"
edition: "community"
application:
links:
- description: airbyte web ui
url: {{ context.hostname }}
logs:
accessKey:
existingSecret: airbyte-airbyte-secrets
Expand All @@ -20,6 +23,7 @@ global:
password: {{ imports["airbyte-{{ context.cluster }}"].secret_access_key }}
storage:
type: S3
state:
storage:
type: S3
Expand All @@ -37,6 +41,7 @@ airbyte:
existingSecret: ~
password: {{ imports["airbyte-{{ context.cluster }}"].postgres_password }}
port: 5432
webapp:
ingress:
hosts:
Expand All @@ -55,6 +60,7 @@ airbyte:
{% endif %}
podLabels:
security.plural.sh/inject-oauth-sidecar: "true"
oidc-config:
enabled: true
secret:
Expand All @@ -74,6 +80,7 @@ oidc-config:
postgres:
enabled: false
private:
ingress:
enabled: true
Expand All @@ -86,4 +93,4 @@ private:
- hosts:
- {{ context.apiHostname }}
secretName: airbyte-private-tls
{% endraw %}
{% endraw %}
3 changes: 2 additions & 1 deletion catalogs/data/airbyte/terraform/aws/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ output "access_key_id" {

output "secret_access_key" {
value = aws_iam_access_key.airbyte.secret
sensitive = true
}

output "postgres_host" {
Expand All @@ -28,4 +29,4 @@ output "oidc_client_id" {
output "oidc_client_secret" {
value = plural_oidc_provider.airbyte.client_secret
sensitive = true
}
}

0 comments on commit 39d6e5f

Please sign in to comment.