Build infrastructure as code with reusable components and utilities.
Start with SimpleCFT, add packs and use utilities as needed.
SimpleCFT
import * from "@resistdesign/voltra/iac";
const ctf = new SimpleCFT() .applyPack( addDNS, { hostedZoneIdParameterName: "<YOUR_INFO_HERE>", domainNameParameterName: "<YOUR_INFO_HERE>", localUIDevelopmentDomainName: "<YOUR_INFO_HERE>", localUIDevelopmentIPAddress: "<YOUR_INFO_HERE>", } );console.log(cft.template); Copy
const ctf = new SimpleCFT() .applyPack( addDNS, { hostedZoneIdParameterName: "<YOUR_INFO_HERE>", domainNameParameterName: "<YOUR_INFO_HERE>", localUIDevelopmentDomainName: "<YOUR_INFO_HERE>", localUIDevelopmentIPAddress: "<YOUR_INFO_HERE>", } );console.log(cft.template);
Build infrastructure as code with reusable components and utilities.
Usage
Start with
SimpleCFT
, add packs and use utilities as needed.import * from "@resistdesign/voltra/iac";
Example