Dagger
Search

firestartr-bootstrap

No long description provided.

Installation

dagger install github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559

Entrypoint

Return Type
FirestartrBootstrap !
Arguments
NameTypeDefault ValueDescription
bootstrapFileFile -No description provided
previousCrsDirDirectory -No description provided
credentialsSecretSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.FirestartrBootstrap  {
	return dag.
			Firestartrbootstrap(credentialsSecret)
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.FirestartrBootstrap:
	return (
		dag.firestartr_bootstrap(credentialssecret)
	)
@func()
example(credentialsSecret: Secret): FirestartrBootstrap {
	return dag
		.firestartrBootstrap(credentialsSecret)
}

Types

FirestartrBootstrap 🔗

bootstrap() 🔗

Return Type
FirestartrBootstrapBootstrap !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET bootstrap
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.FirestartrBootstrapBootstrap  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Bootstrap()
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.FirestartrBootstrapBootstrap:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.bootstrap()
	)
@func()
example(credentialsSecret: Secret): FirestartrBootstrapBootstrap {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.bootstrap()
}

bootstrapFile() 🔗

Return Type
File !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET bootstrap-file
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.File  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Bootstrapfile()
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.File:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.bootstrapfile()
	)
@func()
example(credentialsSecret: Secret): File {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.bootstrapFile()
}

credentialsSecret() 🔗

Return Type
Secret !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET credentials-secret
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.Secret  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Credentialssecret()
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.Secret:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.credentialssecret()
	)
@func()
example(credentialsSecret: Secret): Secret {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.credentialsSecret()
}

ghOrg() 🔗

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET gh-org
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret) string  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Ghorg(ctx)
}
@function
async def example(credentialssecret: dagger.Secret) -> str:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.ghorg()
	)
@func()
async example(credentialsSecret: Secret): Promise<string> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.ghOrg()
}

creds() 🔗

Return Type
FirestartrBootstrapCredsFile !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET creds
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.FirestartrBootstrapCredsFile  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Creds()
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.FirestartrBootstrapCredsFile:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.creds()
	)
@func()
example(credentialsSecret: Secret): FirestartrBootstrapCredsFile {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.creds()
}

credsFileContent() 🔗

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET creds-file-content
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret) string  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Credsfilecontent(ctx)
}
@function
async def example(credentialssecret: dagger.Secret) -> str:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.credsfilecontent()
	)
@func()
async example(credentialsSecret: Secret): Promise<string> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.credsFileContent()
}

generatedGhToken() 🔗

Return Type
Secret !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET generated-gh-token
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.Secret  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Generatedghtoken()
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.Secret:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.generatedghtoken()
	)
@func()
example(credentialsSecret: Secret): Secret {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.generatedGhToken()
}

renderedCrs() 🔗

Return Type
[FirestartrBootstrapCr ! ] !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET rendered-crs
func (m *MyModule) Example(credentialsSecret *dagger.Secret) []*dagger.FirestartrBootstrapCr  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Renderedcrs()
}
@function
def example(credentialssecret: dagger.Secret) -> List[dagger.FirestartrBootstrapCr]:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.renderedcrs()
	)
@func()
example(credentialsSecret: Secret): FirestartrBootstrapCr[] {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.renderedCrs()
}

provisionedCrs() 🔗

Return Type
[FirestartrBootstrapCr ! ] !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET provisioned-crs
func (m *MyModule) Example(credentialsSecret *dagger.Secret) []*dagger.FirestartrBootstrapCr  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Provisionedcrs()
}
@function
def example(credentialssecret: dagger.Secret) -> List[dagger.FirestartrBootstrapCr]:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.provisionedcrs()
	)
@func()
example(credentialsSecret: Secret): FirestartrBootstrapCr[] {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.provisionedCrs()
}

failedCrs() 🔗

Return Type
[FirestartrBootstrapCr ! ] !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET failed-crs
func (m *MyModule) Example(credentialsSecret *dagger.Secret) []*dagger.FirestartrBootstrapCr  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Failedcrs()
}
@function
def example(credentialssecret: dagger.Secret) -> List[dagger.FirestartrBootstrapCr]:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.failedcrs()
	)
@func()
example(credentialsSecret: Secret): FirestartrBootstrapCr[] {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.failedCrs()
}

previousCrsDir() 🔗

Return Type
Directory !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET previous-crs-dir
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.Directory  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Previouscrsdir()
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.previouscrsdir()
	)
@func()
example(credentialsSecret: Secret): Directory {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.previousCrsDir()
}

claimsDotConfigDir() 🔗

Return Type
Directory !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET claims-dot-config-dir
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.Directory  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Claimsdotconfigdir()
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.claimsdotconfigdir()
	)
@func()
example(credentialsSecret: Secret): Directory {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.claimsDotConfigDir()
}

crsDotConfigDir() 🔗

Return Type
Directory !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET crs-dot-config-dir
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.Directory  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Crsdotconfigdir()
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.crsdotconfigdir()
	)
@func()
example(credentialsSecret: Secret): Directory {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.crsDotConfigDir()
}

includeAllGroup() 🔗

Return Type
Boolean !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET include-all-group
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret) bool  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Includeallgroup(ctx)
}
@function
async def example(credentialssecret: dagger.Secret) -> bool:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.includeallgroup()
	)
@func()
async example(credentialsSecret: Secret): Promise<boolean> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.includeAllGroup()
}

validateBootstrapFile() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
bootstrapFileFile !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET validate-bootstrap-file --bootstrap-file file:path
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, bootstrapFile *dagger.File)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Validatebootstrapfile(ctx, bootstrapFile)
}
@function
async def example(credentialssecret: dagger.Secret, bootstrapfile: dagger.File) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.validatebootstrapfile(bootstrapfile)
	)
@func()
async example(credentialsSecret: Secret, bootstrapFile: File): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.validateBootstrapFile(bootstrapFile)
}

validateCredentialsFile() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
credentialsFileContentsString !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET validate-credentials-file --credentials-file-contents string
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, credentialsFileContents string)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Validatecredentialsfile(ctx, credentialsFileContents)
}
@function
async def example(credentialssecret: dagger.Secret, credentialsfilecontents: str) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.validatecredentialsfile(credentialsfilecontents)
	)
@func()
async example(credentialsSecret: Secret, credentialsFileContents: string): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.validateCredentialsFile(credentialsFileContents)
}

githubRepositoryExists() 🔗

Return Type
Boolean !
Arguments
NameTypeDefault ValueDescription
repoString !-No description provided
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET github-repository-exists --repo string --gh-token env:MYSECRET
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, repo string, ghToken *dagger.Secret) bool  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Githubrepositoryexists(ctx, repo, ghToken)
}
@function
async def example(credentialssecret: dagger.Secret, repo: str, ghtoken: dagger.Secret) -> bool:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.githubrepositoryexists(repo, ghtoken)
	)
@func()
async example(credentialsSecret: Secret, repo: string, ghToken: Secret): Promise<boolean> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.githubRepositoryExists(repo, ghToken)
}

checkAlreadyCreatedRepositories() 🔗

Return Type
[String ! ] !
Arguments
NameTypeDefault ValueDescription
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET check-already-created-repositories --gh-token env:MYSECRET
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, ghToken *dagger.Secret) []string  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Checkalreadycreatedrepositories(ctx, ghToken)
}
@function
async def example(credentialssecret: dagger.Secret, ghtoken: dagger.Secret) -> List[str]:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.checkalreadycreatedrepositories(ghtoken)
	)
@func()
async example(credentialsSecret: Secret, ghToken: Secret): Promise<string[]> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.checkAlreadyCreatedRepositories(ghToken)
}

createKubernetesSecrets() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
kindContainerContainer !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET create-kubernetes-secrets --kind-container IMAGE:TAG
func (m *MyModule) Example(credentialsSecret *dagger.Secret, kindContainer *dagger.Container) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Createkubernetessecrets(kindContainer)
}
@function
def example(credentialssecret: dagger.Secret, kindcontainer: dagger.Container) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.createkubernetessecrets(kindcontainer)
	)
@func()
example(credentialsSecret: Secret, kindContainer: Container): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.createKubernetesSecrets(kindContainer)
}

populateGithubAppCredsFromSecrets() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
kindContainerContainer !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET populate-github-app-creds-from-secrets --kind-container IMAGE:TAG
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, kindContainer *dagger.Container)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Populategithubappcredsfromsecrets(ctx, kindContainer)
}
@function
async def example(credentialssecret: dagger.Secret, kindcontainer: dagger.Container) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.populategithubappcredsfromsecrets(kindcontainer)
	)
@func()
async example(credentialsSecret: Secret, kindContainer: Container): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.populateGithubAppCredsFromSecrets(kindContainer)
}

getKubernetesSecretValue() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
kindContainerContainer !-No description provided
fullRefString !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET get-kubernetes-secret-value --kind-container IMAGE:TAG --full-ref string
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, kindContainer *dagger.Container, fullRef string) string  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Getkubernetessecretvalue(ctx, kindContainer, fullRef)
}
@function
async def example(credentialssecret: dagger.Secret, kindcontainer: dagger.Container, fullref: str) -> str:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.getkubernetessecretvalue(kindcontainer, fullref)
	)
@func()
async example(credentialsSecret: Secret, kindContainer: Container, fullRef: string): Promise<string> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.getKubernetesSecretValue(kindContainer, fullRef)
}

renderCrs() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
importResultDirDirectory !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET render-crs --import-result-dir DIR_PATH
func (m *MyModule) Example(credentialsSecret *dagger.Secret, importResultDir *dagger.Directory) *dagger.Directory  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Rendercrs(importResultDir)
}
@function
def example(credentialssecret: dagger.Secret, importresultdir: dagger.Directory) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.rendercrs(importresultdir)
	)
@func()
example(credentialsSecret: Secret, importResultDir: Directory): Directory {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.renderCrs(importResultDir)
}

renderInitialCrs() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
templFile !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET render-initial-crs --templ file:path
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, templ *dagger.File) string  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Renderinitialcrs(ctx, templ)
}
@function
async def example(credentialssecret: dagger.Secret, templ: dagger.File) -> str:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.renderinitialcrs(templ)
	)
@func()
async example(credentialsSecret: Secret, templ: File): Promise<string> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.renderInitialCrs(templ)
}

renderBootstrapFile() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
templFile !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET render-bootstrap-file --templ file:path
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, templ *dagger.File) string  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Renderbootstrapfile(ctx, templ)
}
@function
async def example(credentialssecret: dagger.Secret, templ: dagger.File) -> str:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.renderbootstrapfile(templ)
	)
@func()
async example(credentialsSecret: Secret, templ: File): Promise<string> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.renderBootstrapFile(templ)
}

buildHelmValues() 🔗

Return Type
String !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET build-helm-values
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret) string  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Buildhelmvalues(ctx)
}
@function
async def example(credentialssecret: dagger.Secret) -> str:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.buildhelmvalues()
	)
@func()
async example(credentialsSecret: Secret): Promise<string> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.buildHelmValues()
}

renderWithFirestartrContainer() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
claimsDirDirectory !-No description provided
crsDirDirectory !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET render-with-firestartr-container --claims-dir DIR_PATH --crs-dir DIR_PATH
func (m *MyModule) Example(credentialsSecret *dagger.Secret, claimsDir *dagger.Directory, crsDir *dagger.Directory) *dagger.Directory  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Renderwithfirestartrcontainer(claimsDir, crsDir)
}
@function
def example(credentialssecret: dagger.Secret, claimsdir: dagger.Directory, crsdir: dagger.Directory) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.renderwithfirestartrcontainer(claimsdir, crsdir)
	)
@func()
example(credentialsSecret: Secret, claimsDir: Directory, crsDir: Directory): Directory {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.renderWithFirestartrContainer(claimsDir, crsDir)
}

updateSecretStoreRef() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
kindContainerContainer !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET update-secret-store-ref --kind-container IMAGE:TAG
func (m *MyModule) Example(credentialsSecret *dagger.Secret, kindContainer *dagger.Container) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Updatesecretstoreref(kindContainer)
}
@function
def example(credentialssecret: dagger.Secret, kindcontainer: dagger.Container) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.updatesecretstoreref(kindcontainer)
	)
@func()
example(credentialsSecret: Secret, kindContainer: Container): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.updateSecretStoreRef(kindContainer)
}

runBootstrap() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
dockerSocketSocket !-No description provided
kindSvcService !-No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *MyModule) Example(credentialsSecret *dagger.Secret, dockerSocket *dagger.Socket, kindSvc *dagger.Service) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Runbootstrap(dockerSocket, kindSvc)
}
@function
def example(credentialssecret: dagger.Secret, dockersocket: dagger.Socket, kindsvc: dagger.Service) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.runbootstrap(dockersocket, kindsvc)
	)
@func()
example(credentialsSecret: Secret, dockerSocket: Socket, kindSvc: Service): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.runBootstrap(dockerSocket, kindSvc)
}

runOperator() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
kindContainerContainer !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET run-operator --kind-container IMAGE:TAG
func (m *MyModule) Example(credentialsSecret *dagger.Secret, kindContainer *dagger.Container) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Runoperator(kindContainer)
}
@function
def example(credentialssecret: dagger.Secret, kindcontainer: dagger.Container) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.runoperator(kindcontainer)
	)
@func()
example(credentialsSecret: Secret, kindContainer: Container): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.runOperator(kindContainer)
}

installHelmAndExternalSecrets() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
dockerSocketSocket !-No description provided
kindSvcService !-No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *MyModule) Example(credentialsSecret *dagger.Secret, dockerSocket *dagger.Socket, kindSvc *dagger.Service) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Installhelmandexternalsecrets(dockerSocket, kindSvc)
}
@function
def example(credentialssecret: dagger.Secret, dockersocket: dagger.Socket, kindsvc: dagger.Service) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.installhelmandexternalsecrets(dockersocket, kindsvc)
	)
@func()
example(credentialsSecret: Secret, dockerSocket: Socket, kindSvc: Service): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.installHelmAndExternalSecrets(dockerSocket, kindSvc)
}

installInitialCrsAndBuildHelmValues() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
kindContainerContainer !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET install-initial-crs-and-build-helm-values --kind-container IMAGE:TAG
func (m *MyModule) Example(credentialsSecret *dagger.Secret, kindContainer *dagger.Container) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Installinitialcrsandbuildhelmvalues(kindContainer)
}
@function
def example(credentialssecret: dagger.Secret, kindcontainer: dagger.Container) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.installinitialcrsandbuildhelmvalues(kindcontainer)
	)
@func()
example(credentialsSecret: Secret, kindContainer: Container): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.installInitialCrsAndBuildHelmValues(kindContainer)
}

applyFirestartrCrs() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
kindContainerContainer !-No description provided
crsDirectoryPathString !-No description provided
crsToApplyList[String ! ] !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET apply-firestartr-crs --kind-container IMAGE:TAG --crs-directory-path string --crs-to-apply-list string1 --crs-to-apply-list string2
func (m *MyModule) Example(credentialsSecret *dagger.Secret, kindContainer *dagger.Container, crsDirectoryPath string, crsToApplyList []string) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Applyfirestartrcrs(kindContainer, crsDirectoryPath, crsToApplyList)
}
@function
def example(credentialssecret: dagger.Secret, kindcontainer: dagger.Container, crsdirectorypath: str, crstoapplylist: List[str]) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.applyfirestartrcrs(kindcontainer, crsdirectorypath, crstoapplylist)
	)
@func()
example(credentialsSecret: Secret, kindContainer: Container, crsDirectoryPath: string, crsToApplyList: string[]): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.applyFirestartrCrs(kindContainer, crsDirectoryPath, crsToApplyList)
}

applyCrAndWaitForProvisioned() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
kindContainerContainer !-No description provided
entryString !-No description provided
waitForProvisionedBoolean !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET apply-cr-and-wait-for-provisioned --kind-container IMAGE:TAG --entry string --wait-for-provisioned boolean
func (m *MyModule) Example(credentialsSecret *dagger.Secret, kindContainer *dagger.Container, entry string, waitForProvisioned bool) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Applycrandwaitforprovisioned(kindContainer, entry, waitForProvisioned)
}
@function
def example(credentialssecret: dagger.Secret, kindcontainer: dagger.Container, entry: str, waitforprovisioned: bool) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.applycrandwaitforprovisioned(kindcontainer, entry, waitforprovisioned)
	)
@func()
example(credentialsSecret: Secret, kindContainer: Container, entry: string, waitForProvisioned: boolean): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.applyCrAndWaitForProvisioned(kindContainer, entry, waitForProvisioned)
}

splitRenderedClaimsInFiles() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
renderedContentString !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET split-rendered-claims-in-files --rendered-content string
func (m *MyModule) Example(credentialsSecret *dagger.Secret, renderedContent string) *dagger.Directory  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Splitrenderedclaimsinfiles(renderedContent)
}
@function
def example(credentialssecret: dagger.Secret, renderedcontent: str) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.splitrenderedclaimsinfiles(renderedcontent)
	)
@func()
example(credentialsSecret: Secret, renderedContent: string): Directory {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.splitRenderedClaimsInFiles(renderedContent)
}

splitRenderedCrsInFiles() 🔗

Return Type
Directory !
Arguments
NameTypeDefault ValueDescription
renderedContentString !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET split-rendered-crs-in-files --rendered-content string
func (m *MyModule) Example(credentialsSecret *dagger.Secret, renderedContent string) *dagger.Directory  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Splitrenderedcrsinfiles(renderedContent)
}
@function
def example(credentialssecret: dagger.Secret, renderedcontent: str) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.splitrenderedcrsinfiles(renderedcontent)
	)
@func()
example(credentialsSecret: Secret, renderedContent: string): Directory {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.splitRenderedCrsInFiles(renderedContent)
}

pushDirToRepo() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
dirDirectory !-No description provided
repoNameString !-No description provided
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET push-dir-to-repo --dir DIR_PATH --repo-name string --gh-token env:MYSECRET
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, dir *dagger.Directory, repoName string, ghToken *dagger.Secret)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Pushdirtorepo(ctx, dir, repoName, ghToken)
}
@function
async def example(credentialssecret: dagger.Secret, dir: dagger.Directory, reponame: str, ghtoken: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.pushdirtorepo(dir, reponame, ghtoken)
	)
@func()
async example(credentialsSecret: Secret, dir: Directory, repoName: string, ghToken: Secret): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.pushDirToRepo(dir, repoName, ghToken)
}

cloneRepo() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
repoNameString !-No description provided
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET clone-repo --repo-name string --gh-token env:MYSECRET
func (m *MyModule) Example(credentialsSecret *dagger.Secret, repoName string, ghToken *dagger.Secret) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Clonerepo(repoName, ghToken)
}
@function
def example(credentialssecret: dagger.Secret, reponame: str, ghtoken: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.clonerepo(reponame, ghtoken)
	)
@func()
example(credentialsSecret: Secret, repoName: string, ghToken: Secret): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.cloneRepo(repoName, ghToken)
}

createLabelsInRepo() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
repoNameString !-No description provided
labelList[String ! ] !-No description provided
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET create-labels-in-repo --repo-name string --label-list string1 --label-list string2 --gh-token env:MYSECRET
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, repoName string, labelList []string, ghToken *dagger.Secret)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Createlabelsinrepo(ctx, repoName, labelList, ghToken)
}
@function
async def example(credentialssecret: dagger.Secret, reponame: str, labellist: List[str], ghtoken: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.createlabelsinrepo(reponame, labellist, ghtoken)
	)
@func()
async example(credentialsSecret: Secret, repoName: string, labelList: string[], ghToken: Secret): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.createLabelsInRepo(repoName, labelList, ghToken)
}

setOrgVariable() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
nameString !-No description provided
valueString !-No description provided
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET set-org-variable --name string --value string --gh-token env:MYSECRET
func (m *MyModule) Example(credentialsSecret *dagger.Secret, name string, value string, ghToken *dagger.Secret) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Setorgvariable(name, value, ghToken)
}
@function
def example(credentialssecret: dagger.Secret, name: str, value: str, ghtoken: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.setorgvariable(name, value, ghtoken)
	)
@func()
example(credentialsSecret: Secret, name: string, value: string, ghToken: Secret): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.setOrgVariable(name, value, ghToken)
}

setRepoVariable() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
repoNameString !-No description provided
nameString !-No description provided
valueString !-No description provided
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET set-repo-variable --repo-name string --name string --value string --gh-token env:MYSECRET
func (m *MyModule) Example(credentialsSecret *dagger.Secret, repoName string, name string, value string, ghToken *dagger.Secret) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Setrepovariable(repoName, name, value, ghToken)
}
@function
def example(credentialssecret: dagger.Secret, reponame: str, name: str, value: str, ghtoken: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.setrepovariable(reponame, name, value, ghtoken)
	)
@func()
example(credentialsSecret: Secret, repoName: string, name: string, value: string, ghToken: Secret): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.setRepoVariable(repoName, name, value, ghToken)
}

setRepoVariables() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET set-repo-variables --gh-token env:MYSECRET
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, ghToken *dagger.Secret)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Setrepovariables(ctx, ghToken)
}
@function
async def example(credentialssecret: dagger.Secret, ghtoken: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.setrepovariables(ghtoken)
	)
@func()
async example(credentialsSecret: Secret, ghToken: Secret): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.setRepoVariables(ghToken)
}

setOrgVariables() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
ghTokenSecret !-No description provided
kindContainerContainer !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET set-org-variables --gh-token env:MYSECRET --kind-container IMAGE:TAG
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, ghToken *dagger.Secret, kindContainer *dagger.Container)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Setorgvariables(ctx, ghToken, kindContainer)
}
@function
async def example(credentialssecret: dagger.Secret, ghtoken: dagger.Secret, kindcontainer: dagger.Container) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.setorgvariables(ghtoken, kindcontainer)
	)
@func()
async example(credentialsSecret: Secret, ghToken: Secret, kindContainer: Container): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.setOrgVariables(ghToken, kindContainer)
}

setOrgSecret() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
nameString !-No description provided
valueString !-No description provided
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET set-org-secret --name string --value string --gh-token env:MYSECRET
func (m *MyModule) Example(credentialsSecret *dagger.Secret, name string, value string, ghToken *dagger.Secret) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Setorgsecret(name, value, ghToken)
}
@function
def example(credentialssecret: dagger.Secret, name: str, value: str, ghtoken: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.setorgsecret(name, value, ghtoken)
	)
@func()
example(credentialsSecret: Secret, name: string, value: string, ghToken: Secret): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.setOrgSecret(name, value, ghToken)
}

setOrgSecrets() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
ghTokenSecret !-No description provided
kindContainerContainer !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET set-org-secrets --gh-token env:MYSECRET --kind-container IMAGE:TAG
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, ghToken *dagger.Secret, kindContainer *dagger.Container)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Setorgsecrets(ctx, ghToken, kindContainer)
}
@function
async def example(credentialssecret: dagger.Secret, ghtoken: dagger.Secret, kindcontainer: dagger.Container) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.setorgsecrets(ghtoken, kindcontainer)
	)
@func()
async example(credentialsSecret: Secret, ghToken: Secret, kindContainer: Container): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.setOrgSecrets(ghToken, kindContainer)
}

ghContainer() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET gh-container --gh-token env:MYSECRET
func (m *MyModule) Example(credentialsSecret *dagger.Secret, ghToken *dagger.Secret) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Ghcontainer(ghToken)
}
@function
def example(credentialssecret: dagger.Secret, ghtoken: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.ghcontainer(ghtoken)
	)
@func()
example(credentialsSecret: Secret, ghToken: Secret): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.ghContainer(ghToken)
}

generateGithubToken() 🔗

Return Type
Secret !
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET generate-github-token
func (m *MyModule) Example(credentialsSecret *dagger.Secret) *dagger.Secret  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Generategithubtoken()
}
@function
def example(credentialssecret: dagger.Secret) -> dagger.Secret:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.generategithubtoken()
	)
@func()
example(credentialsSecret: Secret): Secret {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.generateGithubToken()
}

workflowRun() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
jsonInputString !-No description provided
workflowFileNameString !-No description provided
repoString !-No description provided
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET workflow-run --json-input string --workflow-file-name string --repo string --gh-token env:MYSECRET
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, jsonInput string, workflowFileName string, repo string, ghToken *dagger.Secret)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Workflowrun(ctx, jsonInput, workflowFileName, repo, ghToken)
}
@function
async def example(credentialssecret: dagger.Secret, jsoninput: str, workflowfilename: str, repo: str, ghtoken: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.workflowrun(jsoninput, workflowfilename, repo, ghtoken)
	)
@func()
async example(credentialsSecret: Secret, jsonInput: string, workflowFileName: string, repo: string, ghToken: Secret): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.workflowRun(jsonInput, workflowFileName, repo, ghToken)
}

checkIfOrgAllGroupExists() 🔗

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET check-if-org-all-group-exists --gh-token env:MYSECRET
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, ghToken *dagger.Secret)   {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Checkiforgallgroupexists(ctx, ghToken)
}
@function
async def example(credentialssecret: dagger.Secret, ghtoken: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.checkiforgallgroupexists(ghtoken)
	)
@func()
async example(credentialsSecret: Secret, ghToken: Secret): Promise<void> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.checkIfOrgAllGroupExists(ghToken)
}

getOrganizationPlanName() 🔗

Return Type
String !
Arguments
NameTypeDefault ValueDescription
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET get-organization-plan-name --gh-token env:MYSECRET
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, ghToken *dagger.Secret) string  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Getorganizationplanname(ctx, ghToken)
}
@function
async def example(credentialssecret: dagger.Secret, ghtoken: dagger.Secret) -> str:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.getorganizationplanname(ghtoken)
	)
@func()
async example(credentialsSecret: Secret, ghToken: Secret): Promise<string> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.getOrganizationPlanName(ghToken)
}

orgHasFreePlan() 🔗

Return Type
Boolean !
Arguments
NameTypeDefault ValueDescription
ghTokenSecret !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET org-has-free-plan --gh-token env:MYSECRET
func (m *MyModule) Example(ctx context.Context, credentialsSecret *dagger.Secret, ghToken *dagger.Secret) bool  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Orghasfreeplan(ctx, ghToken)
}
@function
async def example(credentialssecret: dagger.Secret, ghtoken: dagger.Secret) -> bool:
	return await (
		dag.firestartr_bootstrap(credentialssecret)
		.orghasfreeplan(ghtoken)
	)
@func()
async example(credentialsSecret: Secret, ghToken: Secret): Promise<boolean> {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.orgHasFreePlan(ghToken)
}

runImporter() 🔗

Return Type
Container !
Arguments
NameTypeDefault ValueDescription
kindContainerContainer !-No description provided
alreadyCreatedReposList[String ! ] !-No description provided
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
 --credentials-secret env:MYSECRET run-importer --kind-container IMAGE:TAG --already-created-repos-list string1 --already-created-repos-list string2
func (m *MyModule) Example(credentialsSecret *dagger.Secret, kindContainer *dagger.Container, alreadyCreatedReposList []string) *dagger.Container  {
	return dag.
			Firestartrbootstrap(credentialsSecret).
			Runimporter(kindContainer, alreadyCreatedReposList)
}
@function
def example(credentialssecret: dagger.Secret, kindcontainer: dagger.Container, alreadycreatedreposlist: List[str]) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentialssecret)
		.runimporter(kindcontainer, alreadycreatedreposlist)
	)
@func()
example(credentialsSecret: Secret, kindContainer: Container, alreadyCreatedReposList: string[]): Container {
	return dag
		.firestartrBootstrap(credentialsSecret)
		.runImporter(kindContainer, alreadyCreatedReposList)
}

FirestartrBootstrapBootstrap 🔗

firestartr() 🔗

Return Type
FirestartrBootstrapFirestartr !
Example
Function FirestartrBootstrapBootstrap.firestartr is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.firestartr is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.firestartr is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.firestartr is not accessible from the firestartr-bootstrap module

pushFiles() 🔗

Return Type
FirestartrBootstrapPushFiles !
Example
Function FirestartrBootstrapBootstrap.pushFiles is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.pushFiles is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.pushFiles is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.pushFiles is not accessible from the firestartr-bootstrap module

org() 🔗

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.org is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.org is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.org is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.org is not accessible from the firestartr-bootstrap module

components() 🔗

Return Type
[FirestartrBootstrapComponent ! ] !
Example
Function FirestartrBootstrapBootstrap.components is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.components is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.components is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.components is not accessible from the firestartr-bootstrap module

defaultSystemName() 🔗

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.defaultSystemName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultSystemName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultSystemName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultSystemName is not accessible from the firestartr-bootstrap module

defaultDomainName() 🔗

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.defaultDomainName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultDomainName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultDomainName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultDomainName is not accessible from the firestartr-bootstrap module

defaultFirestartrGroup() 🔗

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.defaultFirestartrGroup is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultFirestartrGroup is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultFirestartrGroup is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultFirestartrGroup is not accessible from the firestartr-bootstrap module

defaultBranch() 🔗

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.defaultBranch is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultBranch is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultBranch is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultBranch is not accessible from the firestartr-bootstrap module

defaultBranchStrategy() 🔗

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.defaultBranchStrategy is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultBranchStrategy is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultBranchStrategy is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultBranchStrategy is not accessible from the firestartr-bootstrap module

defaultOrgPermissions() 🔗

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.defaultOrgPermissions is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultOrgPermissions is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultOrgPermissions is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.defaultOrgPermissions is not accessible from the firestartr-bootstrap module

finalSecretStoreName() 🔗

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.finalSecretStoreName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.finalSecretStoreName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.finalSecretStoreName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.finalSecretStoreName is not accessible from the firestartr-bootstrap module

webhookUrl() 🔗

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.webhookUrl is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.webhookUrl is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.webhookUrl is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.webhookUrl is not accessible from the firestartr-bootstrap module

hasFreePlan() 🔗

Autocalculated

Return Type
Boolean !
Example
Function FirestartrBootstrapBootstrap.hasFreePlan is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.hasFreePlan is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.hasFreePlan is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.hasFreePlan is not accessible from the firestartr-bootstrap module

botName() 🔗

Stored in Credentialsfile.yaml, but needed here for templating

Return Type
String !
Example
Function FirestartrBootstrapBootstrap.botName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.botName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.botName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapBootstrap.botName is not accessible from the firestartr-bootstrap module

FirestartrBootstrapCredsFile 🔗

cloudProvider() 🔗

Return Type
FirestartrBootstrapCloudProvider !
Example
Function FirestartrBootstrapCredsFile.cloudProvider is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCredsFile.cloudProvider is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCredsFile.cloudProvider is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCredsFile.cloudProvider is not accessible from the firestartr-bootstrap module

githubApp() 🔗

Return Type
FirestartrBootstrapGithubApp !
Example
Function FirestartrBootstrapCredsFile.githubApp is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCredsFile.githubApp is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCredsFile.githubApp is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCredsFile.githubApp is not accessible from the firestartr-bootstrap module

FirestartrBootstrapCr 🔗

kind() 🔗

Return Type
String !
Example
Function FirestartrBootstrapCr.kind is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCr.kind is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCr.kind is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCr.kind is not accessible from the firestartr-bootstrap module

metadata() 🔗

Return Type
FirestartrBootstrapMetadata !
Example
Function FirestartrBootstrapCr.metadata is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCr.metadata is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCr.metadata is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCr.metadata is not accessible from the firestartr-bootstrap module

FirestartrBootstrapFirestartr 🔗

version() 🔗

Return Type
String !
Example
Function FirestartrBootstrapFirestartr.version is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapFirestartr.version is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapFirestartr.version is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapFirestartr.version is not accessible from the firestartr-bootstrap module

FirestartrBootstrapPushFiles 🔗

claims() 🔗

Return Type
FirestartrBootstrapPushFilesRepo !
Example
Function FirestartrBootstrapPushFiles.claims is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFiles.claims is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFiles.claims is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFiles.claims is not accessible from the firestartr-bootstrap module

crs() 🔗

Return Type
FirestartrBootstrapCrs !
Example
Function FirestartrBootstrapPushFiles.crs is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFiles.crs is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFiles.crs is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFiles.crs is not accessible from the firestartr-bootstrap module

FirestartrBootstrapComponent 🔗

name() 🔗

Return Type
String !
Example
Function FirestartrBootstrapComponent.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.name is not accessible from the firestartr-bootstrap module

repoName() 🔗

Return Type
String !
Example
Function FirestartrBootstrapComponent.repoName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.repoName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.repoName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.repoName is not accessible from the firestartr-bootstrap module

description() 🔗

Return Type
String !
Example
Function FirestartrBootstrapComponent.description is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.description is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.description is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.description is not accessible from the firestartr-bootstrap module

defaultBranch() 🔗

Return Type
String !
Example
Function FirestartrBootstrapComponent.defaultBranch is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.defaultBranch is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.defaultBranch is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.defaultBranch is not accessible from the firestartr-bootstrap module

features() 🔗

Return Type
[FirestartrBootstrapFeature ! ] !
Example
Function FirestartrBootstrapComponent.features is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.features is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.features is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.features is not accessible from the firestartr-bootstrap module

variables() 🔗

Return Type
[FirestartrBootstrapVariable ! ] !
Example
Function FirestartrBootstrapComponent.variables is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.variables is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.variables is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.variables is not accessible from the firestartr-bootstrap module

secrets() 🔗

Secrets have the same structure as Variables

Return Type
[FirestartrBootstrapVariable ! ] !
Example
Function FirestartrBootstrapComponent.secrets is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.secrets is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.secrets is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.secrets is not accessible from the firestartr-bootstrap module

labels() 🔗

Return Type
[String ! ] !
Example
Function FirestartrBootstrapComponent.labels is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.labels is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.labels is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.labels is not accessible from the firestartr-bootstrap module

skipped() 🔗

Return Type
Boolean !
Example
Function FirestartrBootstrapComponent.skipped is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.skipped is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.skipped is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapComponent.skipped is not accessible from the firestartr-bootstrap module

FirestartrBootstrapCloudProvider 🔗

providerConfigName() 🔗

Return Type
String !
Example
Function FirestartrBootstrapCloudProvider.providerConfigName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.providerConfigName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.providerConfigName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.providerConfigName is not accessible from the firestartr-bootstrap module

config() 🔗

Return Type
FirestartrBootstrapConfigProvider !
Example
Function FirestartrBootstrapCloudProvider.config is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.config is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.config is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.config is not accessible from the firestartr-bootstrap module

source() 🔗

Return Type
String !
Example
Function FirestartrBootstrapCloudProvider.source is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.source is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.source is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.source is not accessible from the firestartr-bootstrap module

type() 🔗

Return Type
String !
Example
Function FirestartrBootstrapCloudProvider.type is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.type is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.type is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.type is not accessible from the firestartr-bootstrap module

version() 🔗

Return Type
String !
Example
Function FirestartrBootstrapCloudProvider.version is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.version is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.version is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.version is not accessible from the firestartr-bootstrap module

name() 🔗

Return Type
String !
Example
Function FirestartrBootstrapCloudProvider.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCloudProvider.name is not accessible from the firestartr-bootstrap module

FirestartrBootstrapGithubApp 🔗

providerConfigName() 🔗

Return Type
String !
Example
Function FirestartrBootstrapGithubApp.providerConfigName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.providerConfigName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.providerConfigName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.providerConfigName is not accessible from the firestartr-bootstrap module

owner() 🔗

Return Type
String !
Example
Function FirestartrBootstrapGithubApp.owner is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.owner is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.owner is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.owner is not accessible from the firestartr-bootstrap module

botName() 🔗

Return Type
String !
Example
Function FirestartrBootstrapGithubApp.botName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.botName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.botName is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.botName is not accessible from the firestartr-bootstrap module

pem() 🔗

Return Type
String !
Example
Function FirestartrBootstrapGithubApp.pem is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.pem is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.pem is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.pem is not accessible from the firestartr-bootstrap module

rawPem() 🔗

Return Type
String !
Example
Function FirestartrBootstrapGithubApp.rawPem is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.rawPem is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.rawPem is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.rawPem is not accessible from the firestartr-bootstrap module

ghAppId() 🔗

Return Type
String !
Example
Function FirestartrBootstrapGithubApp.ghAppId is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.ghAppId is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.ghAppId is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.ghAppId is not accessible from the firestartr-bootstrap module

installationId() 🔗

Return Type
String !
Example
Function FirestartrBootstrapGithubApp.installationId is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.installationId is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.installationId is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.installationId is not accessible from the firestartr-bootstrap module

botPat() 🔗

Return Type
String !
Example
Function FirestartrBootstrapGithubApp.botPat is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.botPat is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.botPat is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapGithubApp.botPat is not accessible from the firestartr-bootstrap module

FirestartrBootstrapMetadata 🔗

name() 🔗

Return Type
String !
Example
Function FirestartrBootstrapMetadata.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapMetadata.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapMetadata.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapMetadata.name is not accessible from the firestartr-bootstrap module

FirestartrBootstrapPushFilesRepo 🔗

push() 🔗

Return Type
Boolean !
Example
Function FirestartrBootstrapPushFilesRepo.push is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFilesRepo.push is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFilesRepo.push is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFilesRepo.push is not accessible from the firestartr-bootstrap module

repo() 🔗

Return Type
String !
Example
Function FirestartrBootstrapPushFilesRepo.repo is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFilesRepo.repo is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFilesRepo.repo is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapPushFilesRepo.repo is not accessible from the firestartr-bootstrap module

FirestartrBootstrapCrs 🔗

providers() 🔗

Return Type
FirestartrBootstrapProviders !
Example
Function FirestartrBootstrapCrs.providers is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCrs.providers is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCrs.providers is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapCrs.providers is not accessible from the firestartr-bootstrap module

FirestartrBootstrapFeature 🔗

name() 🔗

Return Type
String !
Example
Function FirestartrBootstrapFeature.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapFeature.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapFeature.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapFeature.name is not accessible from the firestartr-bootstrap module

version() 🔗

Return Type
String !
Example
Function FirestartrBootstrapFeature.version is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapFeature.version is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapFeature.version is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapFeature.version is not accessible from the firestartr-bootstrap module

FirestartrBootstrapVariable 🔗

name() 🔗

Return Type
String !
Example
Function FirestartrBootstrapVariable.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapVariable.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapVariable.name is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapVariable.name is not accessible from the firestartr-bootstrap module

value() 🔗

Return Type
String !
Example
Function FirestartrBootstrapVariable.value is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapVariable.value is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapVariable.value is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapVariable.value is not accessible from the firestartr-bootstrap module

FirestartrBootstrapConfigProvider 🔗

bucket() 🔗

Return Type
String !
Example
Function FirestartrBootstrapConfigProvider.bucket is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.bucket is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.bucket is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.bucket is not accessible from the firestartr-bootstrap module

region() 🔗

Return Type
String !
Example
Function FirestartrBootstrapConfigProvider.region is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.region is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.region is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.region is not accessible from the firestartr-bootstrap module

accessKey() 🔗

Return Type
String !
Example
Function FirestartrBootstrapConfigProvider.accessKey is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.accessKey is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.accessKey is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.accessKey is not accessible from the firestartr-bootstrap module

secretKey() 🔗

Return Type
String !
Example
Function FirestartrBootstrapConfigProvider.secretKey is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.secretKey is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.secretKey is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.secretKey is not accessible from the firestartr-bootstrap module

token() 🔗

Return Type
String !
Example
Function FirestartrBootstrapConfigProvider.token is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.token is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.token is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapConfigProvider.token is not accessible from the firestartr-bootstrap module

FirestartrBootstrapProviders 🔗

github() 🔗

Return Type
FirestartrBootstrapPushFilesRepo !
Example
Function FirestartrBootstrapProviders.github is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapProviders.github is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapProviders.github is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapProviders.github is not accessible from the firestartr-bootstrap module

terraform() 🔗

Return Type
FirestartrBootstrapPushFilesRepo !
Example
Function FirestartrBootstrapProviders.terraform is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapProviders.terraform is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapProviders.terraform is not accessible from the firestartr-bootstrap module
Function FirestartrBootstrapProviders.terraform is not accessible from the firestartr-bootstrap module