-
Notifications
You must be signed in to change notification settings - Fork 109
/
Copy pathconfig.go
673 lines (542 loc) · 21.6 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
package config
import (
"errors"
"fmt"
. "github.com/formancehq/go-libs/v2/collectionutils"
pulumi_ledger "github.com/formancehq/ledger/deployments/pulumi/pkg"
"github.com/formancehq/ledger/deployments/pulumi/pkg/api"
"github.com/formancehq/ledger/deployments/pulumi/pkg/common"
"github.com/formancehq/ledger/deployments/pulumi/pkg/generator"
"github.com/formancehq/ledger/deployments/pulumi/pkg/monitoring"
"github.com/formancehq/ledger/deployments/pulumi/pkg/provision"
"github.com/formancehq/ledger/deployments/pulumi/pkg/storage"
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/rds"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
"github.com/pulumi/pulumi/sdk/v3/go/pulumix"
"time"
)
type Ingress struct {
// Host is the hostname for the ingress
Host string `json:"host"`
// Secret is the secret name for the ingress
Secret string `json:"secret"`
}
func (i Ingress) toInput() *api.IngressArgs {
if i.Host == "" {
return nil
}
return &api.IngressArgs{
Host: pulumix.Val(i.Host),
Secret: pulumix.Val(&i.Secret),
}
}
type RDSUseExistingCluster struct {
// ClusterName is the name of the existing RDS cluster to use
ClusterName string `json:"cluster-name" yaml:"cluster-name"`
// MasterPassword is the master password for the existing RDS cluster
MasterPassword string `json:"master-password" yaml:"master-password"`
}
func (a *RDSUseExistingCluster) toInput() *storage.RDSUseExistingClusterArgs {
if a == nil {
return nil
}
return &storage.RDSUseExistingClusterArgs{
ClusterName: pulumi.String(a.ClusterName),
MasterPassword: pulumi.String(a.MasterPassword),
}
}
type RDSPostMigrateSnapshot struct {
// SnapshotIdentifier is the snapshot identifier to create after migrations
SnapshotIdentifier string `json:"snapshot-identifier" yaml:"snapshot-identifier"`
// RetainsOnDelete is whether to retain the RDS cluster on delete (instances will be deleted)
RetainsOnDelete bool `json:"retains-on-delete" yaml:"retains-on-delete"`
}
func (a *RDSPostMigrateSnapshot) toInput() *storage.RDSPostMigrateSnapshotArgs {
if a == nil {
return nil
}
return &storage.RDSPostMigrateSnapshotArgs{
SnapshotIdentifier: pulumi.String(a.SnapshotIdentifier),
RetainsOnDelete: a.RetainsOnDelete,
}
}
type RDSDatabase struct {
// UseCluster is the configuration to use an existing RDS cluster
UseCluster *RDSUseExistingCluster `json:"use-cluster" yaml:"use-cluster" jsonschema:"oneof_required=use-cluster"`
// CreateCluster is the configuration to create a new RDS cluster
CreateCluster *RDSClusterCreate `json:"create-cluster" yaml:"create-cluster" jsonschema:"oneof_required=create-cluster"`
// PostMigrateSnapshot is the configuration for a snapshot to create after migrations
PostMigrateSnapshot *RDSPostMigrateSnapshot `json:"post-migrate-snapshot" yaml:"post-migrate-snapshot"`
// UseDBName is the name of the database to use
UseDBName string `json:"use-db-name" yaml:"use-db-name"`
}
func (a *RDSDatabase) toInput() *storage.RDSDatabaseArgs {
if a == nil {
return nil
}
return &storage.RDSDatabaseArgs{
CreateCluster: a.CreateCluster.toInput(),
UseCluster: a.UseCluster.toInput(),
PostMigrateSnapshot: a.PostMigrateSnapshot.toInput(),
UseDBName: pulumi.String(a.UseDBName),
}
}
type RDSClusterCreate struct {
// UseSubnetGroupName is the name of the subnet group to use for the RDS cluster
UseSubnetGroupName string `json:"use-subnet-group-name" yaml:"use-subnet-group-name"`
// MasterUsername is the master username for the RDS cluster
MasterUsername string `json:"master-username" yaml:"master-username"`
// MasterPassword is the master password for the RDS cluster
MasterPassword string `json:"master-password" yaml:"master-password"`
// SnapshotIdentifier is the snapshot identifier to use for the RDS cluster
SnapshotIdentifier string `json:"initialization-snapshot-identifier" yaml:"initialization-snapshot-identifier"`
// PerformanceInsightsEnabled is whether performance insights is enabled for the RDS cluster
PerformanceInsightsEnabled bool `json:"performance-insights-enabled" yaml:"performance-insights-enabled"`
// InstanceClass is the instance class for the RDS cluster
InstanceClass string `json:"instance-class" yaml:"instance-class"`
// Engine is the engine for the RDS cluster
Engine string `json:"engine" yaml:"engine"`
// EngineVersion is the engine version for the RDS cluster
EngineVersion string `json:"engine-version" yaml:"engine-version"`
// RetainsOnDelete is whether to retain the RDS cluster on delete (instances will be deleted)
RetainsOnDelete bool `json:"retains-on-delete" yaml:"retains-on-delete"`
}
func (a RDSClusterCreate) toInput() *storage.RDSClusterCreateArgs {
return &storage.RDSClusterCreateArgs{
UseSubnetGroupName: pulumi.String(a.UseSubnetGroupName),
MasterUsername: pulumi.String(a.MasterUsername),
MasterPassword: pulumi.String(a.MasterPassword),
SnapshotIdentifier: pulumix.Val(&a.SnapshotIdentifier),
PerformanceInsightsEnabled: pulumi.Bool(a.PerformanceInsightsEnabled),
InstanceClass: pulumix.Val(rds.InstanceType(a.InstanceClass)),
Engine: pulumi.String(a.Engine),
EngineVersion: pulumi.String(a.EngineVersion),
RetainsOnDelete: a.RetainsOnDelete,
}
}
type PostgresInstall struct {
// Username is the username for the Postgres database
Username string `json:"username" yaml:"username"`
// Password is the password for the Postgres database
Password string `json:"password" yaml:"password"`
}
type PostgresDatabase struct {
// URI is the URI for the Postgres database
URI string `json:"uri" yaml:"uri"`
// Install is whether to install the Postgres database
Install *PostgresInstall `json:"install" yaml:"install"`
}
func (a *PostgresDatabase) toInput() *storage.PostgresDatabaseArgs {
if a == nil {
return nil
}
if a.URI != "" {
return &storage.PostgresDatabaseArgs{
URI: pulumi.String(a.URI),
}
}
if a.Install == nil {
panic("uri must be provided if install is false")
}
return &storage.PostgresDatabaseArgs{
Install: &storage.PostgresInstallArgs{
Username: pulumix.Val(a.Install.Username),
Password: pulumix.Val(a.Install.Password),
},
}
}
type ConnectivityDatabase struct {
// AWSEnableIAM is whether to enable IAM for the database
AWSEnableIAM bool `json:"aws-enable-iam" yaml:"aws-enable-iam"`
// MaxIdleConns is the maximum number of idle connections for the database
MaxIdleConns *int `json:"max-idle-conns" yaml:"max-idle-conns"`
// MaxOpenConns is the maximum number of open connections for the database
MaxOpenConns *int `json:"max-open-conns" yaml:"max-open-conns"`
// ConnMaxIdleTime is the maximum idle time for a connection
ConnMaxIdleTime *time.Duration `json:"conn-max-idle-time" yaml:"conn-max-idle-time"`
// Options is the options for the Postgres database to pass on the dsn
Options map[string]string `json:"options" yaml:"options"`
}
func (d ConnectivityDatabase) toInput() storage.ConnectivityDatabaseArgs {
return storage.ConnectivityDatabaseArgs{
AWSEnableIAM: pulumi.Bool(d.AWSEnableIAM),
MaxIdleConns: pulumix.Val(d.MaxIdleConns),
MaxOpenConns: pulumix.Val(d.MaxOpenConns),
ConnMaxIdleTime: pulumix.Val(d.ConnMaxIdleTime),
Options: pulumix.Val(d.Options),
}
}
type StorageSource struct {
// RDS is the RDS configuration for the database
RDS *RDSDatabase `json:"rds" yaml:"rds" jsonschema:"oneof_required=rds"`
// Postgres is the Postgres configuration for the database
Postgres *PostgresDatabase `json:"postgres" yaml:"postgres" jsonschema:"oneof_required=postgres"`
}
type StorageService struct {
// Annotations is the annotations for the service
Annotations map[string]string `json:"annotations" yaml:"annotations"`
}
func (s StorageService) toInput() storage.Service {
return storage.Service{
Annotations: pulumix.Val(s.Annotations),
}
}
type Storage struct {
StorageSource
// Connectivity is the connectivity configuration for the database
Connectivity ConnectivityDatabase `json:"connectivity" yaml:"connectivity"`
// DisableUpgrade is whether to disable upgrades for the database
DisableUpgrade bool `json:"disable-upgrade" yaml:"disable-upgrade"`
// Service is the service configuration for the database
Service StorageService `json:"service" yaml:"service"`
}
func (s Storage) toInput() storage.Args {
return storage.Args{
Postgres: s.Postgres.toInput(),
RDS: s.RDS.toInput(),
ConnectivityDatabaseArgs: s.Connectivity.toInput(),
DisableUpgrade: pulumix.Val(s.DisableUpgrade),
Service: s.Service.toInput(),
}
}
type API struct {
// ReplicaCount is the number of replicas for the API
ReplicaCount *int `json:"replica-count" yaml:"replica-count"`
// GracePeriod is the grace period for the API
GracePeriod time.Duration `json:"grace-period" yaml:"grace-period"`
// BallastSizeInBytes is the ballast size in bytes for the API
BallastSizeInBytes int `json:"ballast-size-in-bytes" yaml:"ballast-size-in-bytes"`
// NumscriptCacheMaxCount is the maximum number of scripts to cache
NumscriptCacheMaxCount int `json:"numscript-cache-max-count" yaml:"numscript-cache-max-count"`
// BulkMaxSize is the maximum size for bulk requests
BulkMaxSize int `json:"bulk-max-size" yaml:"bulk-max-size"`
// BulkParallel is the number of parallel bulk requests
BulkParallel int `json:"bulk-parallel" yaml:"bulk-parallel"`
// TerminationGracePeriodSeconds is the termination grace period in seconds
TerminationGracePeriodSeconds *int `json:"termination-grace-period-seconds" yaml:"termination-grace-period-seconds"`
// ExperimentalFeatures is whether to enable experimental features
ExperimentalFeatures bool `json:"experimental-features" yaml:"experimental-features"`
// ExperimentalNumscriptInterpreter is whether to enable the experimental numscript interpreter
ExperimentalNumscriptInterpreter bool `json:"experimental-numscript-interpreter" yaml:"experimental-numscript-interpreter"`
}
func (d API) toInput() api.Args {
return api.Args{
ReplicaCount: pulumix.Val(d.ReplicaCount),
GracePeriod: pulumix.Val(d.GracePeriod),
BallastSizeInBytes: pulumix.Val(d.BallastSizeInBytes),
NumscriptCacheMaxCount: pulumix.Val(d.NumscriptCacheMaxCount),
BulkMaxSize: pulumix.Val(d.BulkMaxSize),
BulkParallel: pulumix.Val(d.BulkParallel),
TerminationGracePeriodSeconds: pulumix.Val(d.TerminationGracePeriodSeconds),
ExperimentalFeatures: pulumix.Val(d.ExperimentalFeatures),
ExperimentalNumscriptInterpreter: pulumix.Val(d.ExperimentalNumscriptInterpreter),
}
}
type Monitoring struct {
// ResourceAttributes is the resource attributes for OpenTelemetry
ResourceAttributes map[string]string `json:"resource-attributes" yaml:"resource-attributes"`
// ServiceName is the service name for OpenTelemetry
ServiceName string `json:"service-name" yaml:"service-name"`
// Traces is the traces configuration for OpenTelemetry
Traces *MonitoringTraces `json:"traces" yaml:"traces"`
// Metrics is the metrics configuration for OpenTelemetry
Metrics *MonitoringMetrics `json:"metrics" yaml:"metrics"`
}
func (o *Monitoring) ToInput() *monitoring.Args {
if o == nil {
return nil
}
return &monitoring.Args{
ResourceAttributes: pulumix.Val(o.ResourceAttributes),
ServiceName: pulumix.Val(o.ServiceName),
Traces: o.Traces.toInput(),
Metrics: o.Metrics.toInput(),
}
}
type MonitoringTracesJaeger struct {
// Endpoint is the endpoint for the Jaeger exporter
Endpoint string `json:"endpoint" yaml:"endpoint"`
// User is the user for the Jaeger exporter
User string `json:"user" yaml:"user"`
// Password is the password for the Jaeger exporter
Password string `json:"password" yaml:"password"`
}
func (j *MonitoringTracesJaeger) toInput() *monitoring.JaegerExporterArgs {
if j == nil {
return nil
}
return &monitoring.JaegerExporterArgs{
Endpoint: pulumi.String(j.Endpoint),
User: pulumi.String(j.User),
Password: pulumi.String(j.Password),
}
}
type MonitoringTracesOTLP struct {
// Mode is the mode for the OTLP exporter
Mode string `json:"mode" yaml:"mode"`
// Endpoint is the endpoint for the OTLP exporter
Endpoint string `json:"endpoint" yaml:"endpoint"`
// Insecure is whether the OTLP exporter is insecure
Insecure bool `json:"insecure" yaml:"insecure"`
}
func (o *MonitoringTracesOTLP) toInput() *monitoring.EndpointArgs {
if o == nil {
return nil
}
return &monitoring.EndpointArgs{
Mode: pulumi.String(o.Mode),
Endpoint: pulumi.String(o.Endpoint),
Insecure: pulumi.Bool(o.Insecure),
}
}
type MonitoringTraces struct {
// Batch is whether to batch traces
Batch bool `json:"batch" yaml:"batch"`
// Exporter is the exporter flag for traces
Exporter string `json:"exporter" yaml:"exporter"`
// Jaeger is the Jaeger configuration for traces
Jaeger *MonitoringTracesJaeger `json:"jaeger" yaml:"jaeger"`
// OTLP is the OTLP configuration for traces
OTLP *MonitoringTracesOTLP `json:"otlp" yaml:"otlp"`
}
func (t *MonitoringTraces) toInput() *monitoring.TracesArgs {
if t == nil {
return nil
}
return &monitoring.TracesArgs{
Batch: pulumix.Val(t.Batch),
Exporter: pulumix.Val(t.Exporter),
OTLP: t.OTLP.toInput(),
Jaeger: t.Jaeger.toInput(),
}
}
type MonitoringMetricsOTLP struct {
// Mode is the mode for the OTLP metrics exporter
Mode string `json:"mode" yaml:"mode"`
// Endpoint is the endpoint for the OTLP metrics exporter
Endpoint string `json:"endpoint" yaml:"endpoint"`
// Insecure is whether the OTLP metrics exporter is insecure
Insecure bool `json:"insecure" yaml:"insecure"`
}
func (o *MonitoringMetricsOTLP) toInput() *monitoring.EndpointArgs {
if o == nil {
return nil
}
return &monitoring.EndpointArgs{
Mode: pulumi.String(o.Mode),
Endpoint: pulumi.String(o.Endpoint),
Insecure: pulumi.Bool(o.Insecure),
}
}
type MonitoringMetrics struct {
// PushInterval is the push interval for the metrics exporter
PushInterval *time.Duration `json:"push-interval" yaml:"push-interval"`
// Runtime is whether to enable runtime metrics
Runtime bool `json:"runtime" yaml:"runtime"`
// RuntimeMinimumReadMemStatsInterval is the minimum read memory stats interval for runtime metrics
RuntimeMinimumReadMemStatsInterval *time.Duration `json:"runtime-minimum-read-mem-stats-interval" yaml:"runtime-minimum-read-mem-stats-interval"`
// Exporter is the exporter for metrics
Exporter string `json:"exporter" yaml:"exporter"`
// KeepInMemory is whether to keep metrics in memory
KeepInMemory bool `json:"keep-in-memory" yaml:"keep-in-memory"`
// OTLP is the OTLP configuration for metrics
MonitoringMetricsOTLP *MonitoringMetricsOTLP `json:"otlp" yaml:"otlp"`
}
func (m *MonitoringMetrics) toInput() *monitoring.MetricsArgs {
if m == nil {
return nil
}
return &monitoring.MetricsArgs{
PushInterval: pulumix.Val(m.PushInterval),
Runtime: pulumix.Val(m.Runtime),
MinimumReadMemStatsInterval: pulumix.Val(m.RuntimeMinimumReadMemStatsInterval),
Exporter: pulumix.Val(m.Exporter),
KeepInMemory: pulumix.Val(m.KeepInMemory),
OTLP: m.MonitoringMetricsOTLP.toInput(),
}
}
type Common struct {
// Namespace is the namespace for the ledger
Namespace string `json:"namespace" yaml:"namespace"`
// Monitoring is the monitoring configuration for the ledger
Monitoring *Monitoring `json:"monitoring" yaml:"monitoring"`
// Tag is the version tag for the ledger
Tag string `json:"version" yaml:"version"`
// ImagePullPolicy is the image pull policy for the ledger
ImagePullPolicy string `json:"image-pull-policy" yaml:"image-pull-policy"`
// Debug is whether to enable debug mode
Debug bool `json:"debug" yaml:"debug"`
}
func (c Common) toInput() common.CommonArgs {
return common.CommonArgs{
Namespace: pulumix.Val(c.Namespace),
Monitoring: c.Monitoring.ToInput(),
Tag: pulumix.Val(c.Tag),
ImagePullPolicy: pulumix.Val(c.ImagePullPolicy),
Debug: pulumix.Val(c.Debug),
}
}
type LedgerConfig struct {
// Bucket is the bucket for the ledger
Bucket string `json:"bucket" yaml:"bucket"`
// Metadata is the metadata for the ledger
Metadata map[string]string `json:"metadata" yaml:"metadata"`
// Features is the features for the ledger
Features map[string]string `json:"features" yaml:"features"`
}
func (c LedgerConfig) toInput() provision.LedgerConfigArgs {
return provision.LedgerConfigArgs{
Bucket: c.Bucket,
Metadata: c.Metadata,
Features: c.Features,
}
}
type Provision struct {
// ProvisionerVersion is the version of the provisioner (default to the ledger version if not specified)
ProvisionerVersion string `json:"provisioner-version" yaml:"provisioner-version"`
// Ledgers are the ledgers to auto create
Ledgers map[string]LedgerConfig `json:"ledgers" yaml:"ledgers"`
}
func (i Provision) toInput() provision.Args {
return provision.Args{
ProvisionerVersion: pulumi.String(i.ProvisionerVersion),
Ledgers: ConvertMap(i.Ledgers, LedgerConfig.toInput),
}
}
type GeneratorLedgerConfiguration struct {
// UntilLogID is the log ID to run the generator until
UntilLogID uint `json:"until-log-id" yaml:"until-log-id"`
// Script is the script to run
Script string `json:"script" yaml:"script"`
// ScriptFromFile is the script to run from a file (related to the root directory)
ScriptFromFile string `json:"script-from-file" yaml:"script-from-file"`
// VUs is the number of virtual users to run
VUs int `json:"vus" yaml:"vus"`
// HTTPClientTimeout is the http client timeout for the generator
HTTPClientTimeout time.Duration `json:"http-client-timeout" yaml:"http-client-timeout"`
// SkipAwait is whether to skip the await for the generator
SkipAwait bool `json:"skip-await" yaml:"skip-await"`
}
func (g GeneratorLedgerConfiguration) toInput() generator.LedgerConfiguration {
return generator.LedgerConfiguration{
UntilLogID: pulumix.Val(g.UntilLogID),
Script: pulumix.Val(g.Script),
ScriptFromFile: pulumix.Val(g.ScriptFromFile),
VUs: pulumix.Val(g.VUs),
HTTPClientTimeout: pulumix.Val(g.HTTPClientTimeout),
SkipAwait: pulumix.Val(g.SkipAwait),
}
}
type Generator struct {
// GeneratorVersion is the version of the generator
GeneratorVersion string `json:"generator-version" yaml:"generator-version"`
// Ledgers are the ledgers to run the generator against
Ledgers map[string]GeneratorLedgerConfiguration `json:"ledgers" yaml:"ledgers"`
}
func (g *Generator) toInput() *generator.Args {
if g == nil {
return nil
}
return &generator.Args{
GeneratorVersion: pulumix.Val(g.GeneratorVersion),
Ledgers: ConvertMap(g.Ledgers, GeneratorLedgerConfiguration.toInput),
}
}
type Config struct {
Common
// Storage is the storage configuration for the ledger
Storage *Storage `json:"storage" yaml:"storage"`
// API is the API configuration for the ledger
API *API `json:"api" yaml:"api"`
// Ingress is the ingress configuration for the ledger
Ingress *Ingress `json:"ingress" yaml:"ingress"`
// Provision is the initialization configuration for the ledger
Provision *Provision `json:"provision" yaml:"provision"`
// Timeout is the timeout for the ledger
Timeout int `json:"timeout" yaml:"timeout"`
// InstallDevBox is whether to install the dev box
InstallDevBox bool `json:"install-dev-box" yaml:"install-dev-box"`
// Generator is the generator configuration for the ledger
Generator *Generator `json:"generator" yaml:"generator"`
}
func (cfg Config) ToInput() pulumi_ledger.ComponentArgs {
return pulumi_ledger.ComponentArgs{
CommonArgs: cfg.Common.toInput(),
Storage: cfg.Storage.toInput(),
API: cfg.API.toInput(),
Timeout: pulumix.Val(cfg.Timeout),
Ingress: cfg.Ingress.toInput(),
InstallDevBox: pulumix.Val(cfg.InstallDevBox),
Provision: cfg.Provision.toInput(),
Generator: cfg.Generator.toInput(),
}
}
func Load(ctx *pulumi.Context) (*Config, error) {
cfg := config.New(ctx, "")
ingress := &Ingress{}
if err := cfg.TryObject("ingress", ingress); err != nil {
if !errors.Is(err, config.ErrMissingVar) {
return nil, err
}
}
timeout, err := config.TryInt(ctx, "timeout")
if err != nil {
if errors.Is(err, config.ErrMissingVar) {
timeout = 60
} else {
return nil, fmt.Errorf("error reading timeout: %w", err)
}
}
storage := &Storage{}
if err := config.GetObject(ctx, "storage", storage); err != nil {
if !errors.Is(err, config.ErrMissingVar) {
return nil, err
}
return nil, errors.New("storage not defined")
}
api := &API{}
if err := config.GetObject(ctx, "api", api); err != nil {
if !errors.Is(err, config.ErrMissingVar) {
return nil, err
}
}
monitoring := &Monitoring{}
if err := config.GetObject(ctx, "monitoring", monitoring); err != nil {
if !errors.Is(err, config.ErrMissingVar) {
return nil, err
}
}
provision := &Provision{}
if err := cfg.TryObject("provision", provision); err != nil {
if !errors.Is(err, config.ErrMissingVar) {
return nil, err
}
}
generator := &Generator{}
if err := cfg.TryObject("generator", generator); err != nil {
if !errors.Is(err, config.ErrMissingVar) {
return nil, err
}
generator = nil
}
namespace := config.Get(ctx, "namespace")
if namespace == "" {
namespace = ctx.Stack()
}
return &Config{
Timeout: timeout,
Common: Common{
Debug: config.GetBool(ctx, "debug"),
Namespace: namespace,
Tag: config.Get(ctx, "version"),
Monitoring: monitoring,
},
InstallDevBox: config.GetBool(ctx, "install-dev-box"),
Storage: storage,
API: api,
Ingress: ingress,
Provision: provision,
Generator: generator,
}, nil
}