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(credentials_secret: dagger.Secret) -> dagger.FirestartrBootstrap:
	return (
		dag.firestartr_bootstrap(credentials_secret)
	)
@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(credentials_secret: dagger.Secret) -> dagger.FirestartrBootstrapBootstrap:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.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(credentials_secret: dagger.Secret) -> dagger.File:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.bootstrap_file()
	)
@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(credentials_secret: dagger.Secret) -> dagger.Secret:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.credentials_secret()
	)
@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(credentials_secret: dagger.Secret) -> str:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.gh_org()
	)
@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(credentials_secret: dagger.Secret) -> dagger.FirestartrBootstrapCredsFile:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.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(credentials_secret: dagger.Secret) -> str:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.creds_file_content()
	)
@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(credentials_secret: dagger.Secret) -> dagger.Secret:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.generated_gh_token()
	)
@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(credentials_secret: dagger.Secret) -> List[dagger.FirestartrBootstrapCr]:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.rendered_crs()
	)
@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(credentials_secret: dagger.Secret) -> List[dagger.FirestartrBootstrapCr]:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.provisioned_crs()
	)
@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(credentials_secret: dagger.Secret) -> List[dagger.FirestartrBootstrapCr]:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.failed_crs()
	)
@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(credentials_secret: dagger.Secret) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.previous_crs_dir()
	)
@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(credentials_secret: dagger.Secret) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.claims_dot_config_dir()
	)
@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(credentials_secret: dagger.Secret) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.crs_dot_config_dir()
	)
@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(credentials_secret: dagger.Secret) -> bool:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.include_all_group()
	)
@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(credentials_secret: dagger.Secret, bootstrap_file: dagger.File) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.validate_bootstrap_file(bootstrap_file)
	)
@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(credentials_secret: dagger.Secret, credentials_file_contents: str) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.validate_credentials_file(credentials_file_contents)
	)
@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(credentials_secret: dagger.Secret, repo: str, gh_token: dagger.Secret) -> bool:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.github_repository_exists(repo, gh_token)
	)
@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(credentials_secret: dagger.Secret, gh_token: dagger.Secret) -> List[str]:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.check_already_created_repositories(gh_token)
	)
@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(credentials_secret: dagger.Secret, kind_container: dagger.Container) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.create_kubernetes_secrets(kind_container)
	)
@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(credentials_secret: dagger.Secret, kind_container: dagger.Container) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.populate_github_app_creds_from_secrets(kind_container)
	)
@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(credentials_secret: dagger.Secret, kind_container: dagger.Container, full_ref: str) -> str:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.get_kubernetes_secret_value(kind_container, full_ref)
	)
@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(credentials_secret: dagger.Secret, import_result_dir: dagger.Directory) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.render_crs(import_result_dir)
	)
@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(credentials_secret: dagger.Secret, templ: dagger.File) -> str:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.render_initial_crs(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(credentials_secret: dagger.Secret, templ: dagger.File) -> str:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.render_bootstrap_file(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(credentials_secret: dagger.Secret) -> str:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.build_helm_values()
	)
@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(credentials_secret: dagger.Secret, claims_dir: dagger.Directory, crs_dir: dagger.Directory) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.render_with_firestartr_container(claims_dir, crs_dir)
	)
@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(credentials_secret: dagger.Secret, kind_container: dagger.Container) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.update_secret_store_ref(kind_container)
	)
@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(credentials_secret: dagger.Secret, docker_socket: dagger.Socket, kind_svc: dagger.Service) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.run_bootstrap(docker_socket, kind_svc)
	)
@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(credentials_secret: dagger.Secret, kind_container: dagger.Container) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.run_operator(kind_container)
	)
@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(credentials_secret: dagger.Secret, docker_socket: dagger.Socket, kind_svc: dagger.Service) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.install_helm_and_external_secrets(docker_socket, kind_svc)
	)
@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(credentials_secret: dagger.Secret, kind_container: dagger.Container) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.install_initial_crs_and_build_helm_values(kind_container)
	)
@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(credentials_secret: dagger.Secret, kind_container: dagger.Container, crs_directory_path: str, crs_to_apply_list: List[str]) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.apply_firestartr_crs(kind_container, crs_directory_path, crs_to_apply_list)
	)
@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(credentials_secret: dagger.Secret, kind_container: dagger.Container, entry: str, wait_for_provisioned: bool) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.apply_cr_and_wait_for_provisioned(kind_container, entry, wait_for_provisioned)
	)
@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(credentials_secret: dagger.Secret, rendered_content: str) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.split_rendered_claims_in_files(rendered_content)
	)
@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(credentials_secret: dagger.Secret, rendered_content: str) -> dagger.Directory:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.split_rendered_crs_in_files(rendered_content)
	)
@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(credentials_secret: dagger.Secret, dir: dagger.Directory, repo_name: str, gh_token: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.push_dir_to_repo(dir, repo_name, gh_token)
	)
@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(credentials_secret: dagger.Secret, repo_name: str, gh_token: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.clone_repo(repo_name, gh_token)
	)
@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(credentials_secret: dagger.Secret, repo_name: str, label_list: List[str], gh_token: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.create_labels_in_repo(repo_name, label_list, gh_token)
	)
@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(credentials_secret: dagger.Secret, name: str, value: str, gh_token: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.set_org_variable(name, value, gh_token)
	)
@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(credentials_secret: dagger.Secret, repo_name: str, name: str, value: str, gh_token: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.set_repo_variable(repo_name, name, value, gh_token)
	)
@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(credentials_secret: dagger.Secret, gh_token: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.set_repo_variables(gh_token)
	)
@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(credentials_secret: dagger.Secret, gh_token: dagger.Secret, kind_container: dagger.Container) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.set_org_variables(gh_token, kind_container)
	)
@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(credentials_secret: dagger.Secret, name: str, value: str, gh_token: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.set_org_secret(name, value, gh_token)
	)
@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(credentials_secret: dagger.Secret, gh_token: dagger.Secret, kind_container: dagger.Container) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.set_org_secrets(gh_token, kind_container)
	)
@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(credentials_secret: dagger.Secret, gh_token: dagger.Secret) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.gh_container(gh_token)
	)
@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(credentials_secret: dagger.Secret) -> dagger.Secret:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.generate_github_token()
	)
@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(credentials_secret: dagger.Secret, json_input: str, workflow_file_name: str, repo: str, gh_token: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.workflow_run(json_input, workflow_file_name, repo, gh_token)
	)
@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(credentials_secret: dagger.Secret, gh_token: dagger.Secret) -> None:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.check_if_org_all_group_exists(gh_token)
	)
@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(credentials_secret: dagger.Secret, gh_token: dagger.Secret) -> str:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.get_organization_plan_name(gh_token)
	)
@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(credentials_secret: dagger.Secret, gh_token: dagger.Secret) -> bool:
	return await (
		dag.firestartr_bootstrap(credentials_secret)
		.org_has_free_plan(gh_token)
	)
@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(credentials_secret: dagger.Secret, kind_container: dagger.Container, already_created_repos_list: List[str]) -> dagger.Container:
	return (
		dag.firestartr_bootstrap(credentials_secret)
		.run_importer(kind_container, already_created_repos_list)
	)
@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