terradart_google 0.25.0
terradart_google: ^0.25.0 copied to clipboard
Curated factory wrappers for Google Cloud resources (Compute, BigQuery, Cloud Run, Cloud SQL, Pub/Sub, Monitoring, ...) for Dart-first Terraform stacks.
terradart_google #
Ships 1332 curated resource factories + 461 data sources (1793 catalog entries)
The GA hashicorp/google catalog is filled. google-beta is coming soon. The full factory table with example pointers is on Coverage. Discover factories programmatically via package:terradart_google/catalog.dart (terradartCatalog).
How resources are built #
Factory wrappers under lib/src/<service>/ are emitted by terradart wrap from curated overrides in terradart_codegen. They are committed so consumers depend on terradart_google without running codegen.
CI verifies determinism via terradart wrap --check. For google-beta types, open an issue to request curation.
Runtime primitives (Stack, TfArg, writeTo) live in terradart_core.
Installation #
dependencies:
terradart_core: ^0.25.x
terradart_google: ^0.25.x
Usage example #
import 'package:terradart_core/terradart_core.dart';
import 'package:terradart_google/provider.dart';
import 'package:terradart_google/storage.dart';
final class AssetsStack extends Stack {
AssetsStack({required String projectId})
: super(providers: [
GoogleProvider(project: projectId, region: 'asia-northeast1'),
]) {
add(GoogleStorageBucket(
localName: 'assets',
name: TfArg.literal('my-app-assets-prod'),
storageClass: TfArg.literal(BucketStorageClass.standard),
));
}
}
See examples/ and the pubsub quickstart for AppExport / boundary patterns.