terradart_core 0.28.1
terradart_core: ^0.28.1 copied to clipboard
terradart core runtime — Stack, Resource, Provider, Variable, Data, TfArg, TfRef, and LifecycleOptions for Dart-first Terraform synthesis.
Changelog #
0.28.1 - 2026-09-13 #
Lockstep release with terradart_migrate 0.28.1 (passthrough emission fix — a bare Map / List parameter no longer comes out as TfArg.literal). No terradart_core API changes.
0.28.0 - 2026-09-13 #
Added #
TfArg.expression(TfArgExpression) — a raw Terraform expression, emitted verbatim as the tf.json template it is:TfArg.expression(r'${lower(var.name)}-x'),TfArg.expression<int>(r'${var.replicas * 2}'). Accepted on sensitive fields likeTfArg.refandTfArg.variable(no value is stored in it); thevar.<name>references inside it are checked against the Stack's declarations at synth time; a plain value with no${ ... }/%{ ... }sequence is rejected with anArgumentError. Replaces theTfArg.literal(r'${...}')workaround. Breaking for exhaustiveswitches overTfArg— see MIGRATING.md (#662).hasTemplateSequence/templateVariableNames— the template scanner behind it (escapes, quoted strings and directives handled), exported for tools that generateTfArgcode.- Provider aliases —
StackProvider.alias(provider "google" { alias = "eu" }), settable on every provider class in the workspace, andResource.provider/Data.providersettable from every curated factory's newprovider:parameter (provider: 'google.eu', orprovider: 'google-beta'on a GA type). Synth emitsprovider.<name>as a list when a name has more than one configuration (Terraform's JSON form for aliases; a single default configuration keeps the object form) and rejects aprovider:with no matching registration, the same name registered twice without an alias or with the same alias twice, and an alias that is not a Terraform identifier. Breaking for hand-writtenStackProviderimplementations (one getter) — see MIGRATING.md (#666). TfTimeouts/Resource.timeouts— thetimeouts { ... }block as a Dart value (create,read,update,delete), on every curated factory and data source through the sharedtimeouts:parameter, emitted verbatim under the block'stimeoutskey. Provider-neutral likelifecycle: the values are the Go duration strings Terraform writes ('30m','1h30m') — references are not allowed there — and which operations a type declares isterraform validate's business, not synth's.TfTimeouts.of(create: Duration(minutes: 30))builds one fromDurations; a value that is not a duration string throws (#671).TfArg.workspace()—${terraform.workspace}, the selected workspace's name, as a named argument instead of a hand-written expression. Sugar overTfArg.expression, so nothing about state layout or workspace selection changes (#671).- Partial backend configuration — every field of
GcsBackendandS3Backendis optional, so a block whose values arrive at init time (terraform init -backend-config=bucket=...) is expressible:const GcsBackend()emitsbackend "gcs" {}.S3Backend.r2keeps its endpoint and flag preset withbucket/keyleft out (#671). ModuleCall/Stack.addModule— amodule "<name>" { ... }call as a Dart value:source,version,inputs,providers,count/for_eachanddepends_on, emitted under the top-levelmodulekey in registration order. A module's outputs are read back asTfRefs (call.output<String>('member')→${module.<name>.member}), so they flow into anyTfArgslot,depends_on,lifecycleand exports. Synth validates what Terraform would: an input named like a meta-argument is rejected at construction, aprovidersvalue must name a registered provider configuration, andvar.<name>references inside the inputs are checked like a resource's. A repeated local name throwsDuplicateModuleError(#665).- A Stack that only calls modules needs no provider —
Stack(providers: [])synthesizes when the stack registers at least oneModuleCalland no resource or data source of its own: the child modules pin what they use, sorequired_providersis omitted rather than empty. A stack with a resource still needs its provider (#665). Stack.addMoved/TfMoved—moved { from = ... to = ... }blocks, emitted under the top-levelmovedkey in registration order, so a renamed resource (or acount/for_eachinstance unrolled into its own resource) keeps its state. Registration rejects an empty or repeatedfromandfrom == to; synth rejects atothat names no resource of the Stack (amodule.address passes) (#663).
Changed #
- Sensitive nested fields accept any Terraform template — an unescaped
${ ... }or%{ ... }anywhere in the string — where they accepted only a string starting with${(#662). SensitiveLiteralError— the recovery hint mentionsTfArg.expressionfor values Terraform computes.
0.27.0 - 2026-08-30 #
Lockstep release across the workspace. Breaking — see MIGRATING.md.
Added #
S3Backend—terraform { backend "s3" { ... } }configuration, alongside the existingGcsBackendandLocalBackend. Covers S3 and the S3-compatible stores (Cloudflare R2, MinIO, Backblaze B2) viaendpointsplus theskip_*flags.S3Backend.r2(accountId:, bucket:, key:)fills in the R2 endpoint,region = "auto", path-style addressing, and all five skip flags. Optional fields are omitted from the emitted JSON when null; an explicitfalseis emitted.TfVariable+Stack.addVariable— declare thevariable "<name>" { ... }blocks thatTfArg.variablereferences. Synth emits them under the top-levelvariablekey, and omits the key when a stack declares none (Terraform rejects an emptyvariableblock).Stack.addExternalVariable— acceptTfArg.variablereferences to a variable declared in a hand-written file beside the generatedmain.tf.json, without emitting a block for it. For declarationsTfVariablecannot model (validation { ... }) and for existing stacks that keep avariables.tf.- Undeclared-variable check at synth time — synth throws a
StateErrornaming the variable and the resources referencing it when aTfArg.variablereference has no matchingaddVariabledeclaration, including references nested inside literal Maps and Lists. Previously such a config synthesised cleanly and failed atterraform planwith "Reference to undeclared input variable". Breaking — see MIGRATING.md.
Fixed #
- Docs —
Stack.backendandbackends.dartdescribed S3 as living in "provider-specific packages" and named anS3Backendthat no package shipped. Both now describe what core actually provides.
Changed #
SensitiveLiteralError— the recovery hint now points ataddVariableinstead of telling the user to hand-write avariableblock.
0.26.0 - 2026-08-24 #
Lockstep release with terradart_cloudflare 0.26.0 (catalog filled at the 5.23.0 pin). No terradart_core API changes.
0.25.3 - 2026-08-23 #
Lockstep release with terradart_appwrite 0.25.3 (catalog filled at the 2.0.0-beta.1 pin). No terradart_core API changes.
0.25.2 - 2026-08-22 #
Lockstep release with terradart_cloudflare 0.25.2 (initial release). No terradart_core API changes.
0.25.1 - 2026-08-19 #
Lockstep release with terradart_google_beta 0.25.1 (beta-only catalog filled). No terradart_core API changes.
0.25.0 - 2026-08-15 #
Lockstep release with terradart_google 0.25.0 (GA hashicorp/google catalog filled). No terradart_core API changes.
0.24.0 - 2026-07-03 #
Lockstep release with terradart_google 0.24.0 (typed nested helpers). No terradart_core API changes.
0.23.0 - 2026-07-02 #
Lockstep release. Breaking — see MIGRATING.md.
Breaking #
- Removed the
StackProvider.toTfJson()backwards-compat shim; readconfigArgsdirectly.Backend.toTfJson()/TfArg.toTfJson()are unchanged (real, distinct APIs).
0.22.0 - 2026-06-30 #
Lockstep release for Waves 76–77. No API changes in terradart_core.
0.21.0 - 2026-06-28 #
Lockstep release for Wave 74. No API changes in terradart_core.
0.20.0 - 2026-06-21 #
Lockstep release for Wave 73. No API changes in terradart_core.
0.19.0 - 2026-06-21 #
Lockstep release. No API changes vs 0.18.0.
0.18.0 - 2026-06-21 #
Lockstep release. No API changes vs 0.17.1.
0.17.1 - 2026-06-21 #
Lockstep release. No terradart_core API changes.
0.17.0 - 2026-06-21 #
Lockstep release. No terradart_core API changes.
0.16.0 - 2026-06-21 #
Lockstep release. No terradart_core API changes.
0.15.0 - 2026-06-20 #
Lockstep release. No terradart_core API changes.
0.14.0 - 2026-06-16 #
Lockstep release. No terradart_core API changes.
0.13.0 - 2026-06-14 #
Lockstep release. Breaking — see MIGRATING.md.
Breaking #
TimeProvider/TimeSleepmoved toterradart_google(package:terradart_google/time.dart) — core is provider-neutral again.- Removed the unimplemented provider-aliasing surface:
StackProvider.providerAlias,ProviderBinding, andResource.provider. None of it ever reached the synthesized JSON; aliasing returns when multi-provider stacks land. Stack.synth()validates provider coverage: a registered resource / data source whose type prefix (segment before the first_) has no matching providerproviderNamenow throwsStateErrorinstead of silently falling back to an unpinned implied provider.
0.12.19 #
Added #
TimeProvider—hashicorp/timestack provider (~> 0.12) for propagation waits.TimeSleep— hand-writtentime_sleepresource wrapper.
0.12.18 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.18 (Wave 31 Private CA template + pool IAM).
0.12.17 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.17 (Apis.required helper).
0.12.16 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.16 (Wave 30 Private CA certificate).
0.12.15 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.15 (Wave 29 Private CA certificate authority).
0.12.14 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.14 (Wave 28 Private CA pool).
0.12.13 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.13 (Wave 27 Certificate Manager trust + issuance; GoogleProject example backfill).
0.12.12 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.12 (sealed exactly_one_of enforcement on seven factories; see MIGRATING.md).
0.12.11 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.11 (Wave 25 VPC Access connector; Wave 26 Certificate Manager; Artifact Registry remote docker/maven/npm enums).
0.12.10 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.10 (Wave 23 DNS, Eventarc, Cloud Run worker pool, IAP).
0.12.9 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.9 (Wave 22 BigQuery Analytics Hub IAM + Compute regional Armor).
0.12.8 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.8 (Waves 17–21 Eventarc + Compute/BigQuery/Storage/SQL/Firebase).
0.12.7 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.7 (Waves 12–15 Monitoring + Compute/KMS/Pub/Sub/Storage).
0.12.6 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.6 (Wave 10 GKE Backup + Wave 11 Logging project ops).
0.12.5 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.5 (Wave 9 GKE Hub + example/docs debt).
0.12.4 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.4 (Wave 8 GKE core curated factories).
0.12.3 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.3 (WIF provider sealed trust-source breaking fix).
0.12.2 #
No user-facing API changes. Lockstep version bump for terradart_google v0.12.2 (two new curated factories). The terradart_core public surface is unchanged from 0.12.1.
0.12.1 #
No user-facing API changes. Lockstep version bump alongside the terradart_agent v0.12.1 fix (MCP structuredContent object shape). The terradart_core public surface is unchanged from 0.12.0.
0.12.0 #
No user-facing API changes. Lockstep version bump alongside the rest of the workspace for the v0.12.0 release (terradart_codegen static-catalog emission, terradart_google generated catalog, and the new terradart_agent / terradart-mcp package). The terradart_core public surface is unchanged from 0.11.0.
0.11.0 2026-MM-DD #
BREAKING — pre-1.0 polish wave on the terradart_core public surface. Coordinated changes from ADR-0016 (codegen identifier rename) and ADR-0017 (Stack API surface). v0.x permits breaking changes; the 0.11.x line continues to stage the 1.0 surface. See MIGRATING.md for before / after snippets covering every item below.
Stack.synth({required outDir})split —Stack.synth() → SynthResultis now the pure in-memory step that returns the encodedtfJsonplus the optionaldartConstantssource for AppExports.Stack.writeTo(outDir) → Future<void>is the new file-IO wrapper that always writesmain.tf.jsonand, when AppExports produced Dart constants ANDsetAppExportsOutputPathwas called, also writes the generated constants file at that path.writeTothrowsStateErroratomically — before any disk write — whenaddExportwas called withoutsetAppExportsOutputPath.StackSynthremoved from the public barrel — callstack.synth()instead ofStackSynth.synth(stack). The class is annotated@internal; advanced users may still import it via the deep pathpackage:terradart_core/src/synth/stack_synth.dart.Stack,Resource,Datapromoted toabstract base class— user subclasses must now be declaredfinal class XxxStack extends Stack(orbase/sealed).implements Stack/implements Resource/implements Dataare no longer permitted (was a state-bypass foot-gun).Resource.$sensitiveFields→Resource.sensitiveFieldsandResource.$supportsDeletionProtection→Resource.supportsDeletionProtection— dollar-prefix dropped. Both annotated@protected(frompackage:meta); non-subclass reads require an// ignore: invalid_use_of_protected_memberdirective with rationale. Privileged in-library consumers (theTfJsonEncodersynth call sites) already carry the ignore comment with justification.TerraformEnuminterface added —abstract interface class TerraformEnum { String get terraformValue; }is re-exported from theterradart_corebarrel.TfArgLiteral.toTfJsonenum dispatch now routes throughif (v is TerraformEnum); the previous duck-typeddynamic.terraformValuecast and its// ignore: avoid_dynamic_callsdirective are retired. Hand-rolled Terraform-mapped enums must addimplements TerraformEnumand@override final String terraformValue;; codegen-emitted enums get this automatically.
Non-breaking improvements #
encodeArg/encodeArgMap/encodeArgMapWithSensitivereturn types tightened fromdynamictoObject?/Map<String, Object?>— non-breaking at runtime, but call sites benefit from static type checking.- Internal
_DedupKeyvalue type rewritten as a Dart 3 named record. Drops the unusedpackage:meta/meta.dartimport. dart:convertimport prefixes unified acrosslib/andtest/(as dart_convert/as conv/as convert→ no prefix everywhere).
0.10.0 2026-MM-DD #
No user-facing API changes. Workspace consistency bump alongside terradart_google 0.10.0 (Firestore document curation + FirestoreFields.encode helper).
0.9.0 - 2026-05-21 #
BREAKING — pre-1.0 polish wave consuming dogfood findings (issues #52-#57). v0.x permits breaking changes; 1.0 semver lock is deferred until cookbook recipes + real-apply feedback have absorbed more cycles. The 0.9.x line is the staging ground for the 1.0 surface:
Stack.synth({required String outDir})is now concrete — default implementation writes pretty-printed${outDir}/main.tf.jsonand createsoutDirrecursively. Subclasses may still override; existing overrides that delegated toStackSynth.synth(this)+JsonEncoder.withIndent(' ')can be deleted in favour of the default.JsonEncoder→TfJsonEncoder— the synth-time JSON encoder class no longer shadowsdart:convert'sJsonEncoder. Consumers that imported the class directly need to rename references; consumers using onlyStack/StackSynthare unaffected.Stack({bool devMode = false})— new constructor parameter. When true, synth-time injection flipsdeletion_protection: falseon registered resources whoseResource.$supportsDeletionProtectionis true and that did not explicitly set the field. Intended for dogfood / sample apps; production stacks leave it false.Resource.$supportsDeletionProtection— new capability getter (defaultfalse); codegen overrides totrueon 6 curated resources with adeletion_protectionattribute.LocalBackendadded —StackBackendimplementation matching the existingGcsBackendshape. Pass viaStack(backend: const LocalBackend()); no more handwrittentf-out/terraform.tf.TfArg.variable(String name)+TfArgVariable<T>added — third peer of the sealedTfArg<T>family. Emits"${var.<name>}"interpolation. Canonical pattern for sensitive runtime values.SensitiveLiteralErroradded — thrown byTfJsonEncoder.encodeArgMapWithSensitivewhen aTfArgLiteralis assigned to a sensitive field. v0.x silently masked the value to empty string, which caused apply-time HTTP 400. Recovery: switch toTfArg.variable(...)or the<field>_wowrite-only variant.encodeArgMapWithSensitivesignature — gains a requiredString resourceAddressparameter (used bySensitiveLiteralErrorfor diagnostic messages). Internal callers (TfJsonEncoder.resourceBlock) updated.
See MIGRATING.md for the full rename table + sed recipes.
0.8.0-dev - 2026-05-19 #
No user-facing API changes. Workspace consistency bump alongside terradart_google 0.8.0-dev (Wave 7: 23 new GA resources across Data ops + observability + CI/CD — Cloud Build, Artifact Registry, Logging, Monitoring, BigQuery, plus event-driven adjacent: Eventarc, Pub/Sub schema, Storage notification).
0.7.0-dev - 2026-05-19 #
No user-facing API changes. Workspace consistency bump alongside terradart_google 0.7.0-dev (Wave 6: 25 new GA resources across the L7 Application Load Balancer stack — Global + Regional/Internal cores, Health checks, MIG/Autoscaler, NEG, Cloud Armor, SSL Policy).
0.6.0-dev - 2026-05-18 #
No user-facing API changes. Workspace consistency bump alongside terradart_google 0.6.0-dev (Wave 5: 22 new GA resources across IAM completion + Cloud SQL + *_iam_member fill).
0.5.0-dev #
BREAKING — Plan 5.X: schemantic removal + Resource type flattening.
- Dropped
Resource<S>generic —Resourceis now flat. User wrappers extendResourcewithout a type parameter. - Dropped
Resource.schemafield. - Dropped
SchemaCarrier<S>interface. - Dropped
ResourceRef<S>.placeholder—ResourceRefno longer carries a schemantic-instance type parameter (it pins toObject?since the value never escapes). - Dropped
TfArgRef.literalOrPlaceholder. - Deleted
placeholder.dart. - Existing dead tests around the above (e.g.
r.schema.nameassertions) removed. - See ADR-0013 for full rationale.
0.4.0-dev - 2026-05-17 #
No user-facing API changes. Workspace consistency bump alongside terradart_codegen 0.4.0-dev (Plan 5.D: codegen correctness improvements — MM YAML deprecation parsing fix, encode skeleton fix + Gate 6, paramOrder measurement tool, min_items assert hints).
0.3.0-dev - 2026-05-16 #
No user-facing API changes. Workspace consistency bump alongside terradart_google 0.3.0-dev (Wave 4: 21 new GA resources across 6 Firebase / Cloud Functions / Firestore services).
0.2.1-dev - 2026-05-16 #
No API change since 0.2.0-dev. Workspace consistency bump after the 0.2.0-dev publish run partially failed; 0.2.1-dev republishes through a re-ordered publish pipeline.
0.2.0-dev - 2026-05-16 #
Added #
TfArg.duration(Duration)factory — converts a DartDurationto the"{seconds}s"form Terraform expects for duration-string fields (rotation_period,message_retention_duration, the's'-suffixed forms ofack_deadline_seconds, etc.). Sub-second precision and negative durations are rejected withArgumentError.
Fixed #
JsonEncoder.encodeArgMapWithSensitivenow masks sensitive paths through nested-block (List<Map>) structures. Previously, paths likecustomer_encryption.encryption_keywere left as plaintext intf-out/main.tf.jsonbecause the masker only walked top-level keys. Ref interpolations (${...}) continue to pass through unchanged so Terraform wiring is preserved.
0.1.0-dev - 2026-05-14 #
Added #
-
TfArg<MyEnum>.literal(MyEnum.foo)now encodes typed Dart enums to Terraform strings via a new.terraformValueconvention. Declare your enum as:enum MyEnum { foo('FOO'), bar('BAR'); const MyEnum(this.terraformValue); final String terraformValue; }and
TfArgLiteral.toTfJson()will serializeMyEnum.fooas the string"FOO". ThrowsArgumentError(not silent wrong-output) if you pass an enum value whose type does not implement the convention. -
String / int / num / bool literals continue to pass through
toTfJson()unchanged.
Notes #
- No breaking changes to
Stack/Resource/Data/StackSynth/Provider/Variable<T>/LifecycleOptions/AppExport/TfArg/TfRef.
0.0.4-dev - 2026-05-11 #
- No user-facing API changes. Version bumped for workspace consistency with Phase 4.1 (
terradart wrapsubcommand + DataSource emitters + 13terradart_googlewrappers migrated to generator output).
0.0.3-dev - 2026-05-09 #
- Fix: rename terradart_core main library file to match package name.
0.0.2-dev - 2026-05-09 #
- CI automated publishing via OIDC trusted publisher.
- Fix: prepare_publish.sh now syncs version from tag name.
0.0.1-dev - 2026-05-09 #
Added #
- Initial pre-alpha release of
terradartcore runtime. Stackabstract base — registerResource<S>/Data<S>instances viaadd(...)/addData(...).StackSynth.synth(stack)returningSynthResult(Terraform JSON + optional Dart constants).Resource<S>/Data<S>typed nodes;Provider,Variable<T>,LifecycleOptions,AppExport.TfArg.literal(...)/TfArg.ref(...)argument helpers.
Notes #
- Pre-alpha — surface and emitted Dart symbols may change between 0.0.x releases.