firestartr-bootstrap
No long description provided.
Installation
dagger install github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559Entrypoint
Return Type
FirestartrBootstrap !Arguments
| Name | Type | Default Value | Description |
|---|---|---|---|
| bootstrapFile | File | - | No description provided |
| previousCrsDir | Directory | - | No description provided |
| credentialsSecret | Secret ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRETfunc (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 bootstrapfunc (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-filefunc (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-secretfunc (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-orgfunc (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 credsfunc (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-contentfunc (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-tokenfunc (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-crsfunc (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-crsfunc (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-crsfunc (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-dirfunc (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-dirfunc (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-dirfunc (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-groupfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| bootstrapFile | File ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRET validate-bootstrap-file --bootstrap-file file:pathfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| credentialsFileContents | String ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRET validate-credentials-file --credentials-file-contents stringfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| repo | String ! | - | No description provided |
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| kindContainer | Container ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRET create-kubernetes-secrets --kind-container IMAGE:TAGfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| kindContainer | Container ! | - | 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:TAGfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| kindContainer | Container ! | - | No description provided |
| fullRef | String ! | - | 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 stringfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| importResultDir | Directory ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRET render-crs --import-result-dir DIR_PATHfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| templ | File ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRET render-initial-crs --templ file:pathfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| templ | File ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRET render-bootstrap-file --templ file:pathfunc (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-valuesfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| claimsDir | Directory ! | - | No description provided |
| crsDir | Directory ! | - | 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_PATHfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| kindContainer | Container ! | - | 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:TAGfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| dockerSocket | Socket ! | - | No description provided |
| kindSvc | Service ! | - | 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
| Name | Type | Default Value | Description |
|---|---|---|---|
| kindContainer | Container ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRET run-operator --kind-container IMAGE:TAGfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| dockerSocket | Socket ! | - | No description provided |
| kindSvc | Service ! | - | 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
| Name | Type | Default Value | Description |
|---|---|---|---|
| kindContainer | Container ! | - | 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:TAGfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| kindContainer | Container ! | - | No description provided |
| crsDirectoryPath | String ! | - | 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 string2func (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| kindContainer | Container ! | - | No description provided |
| entry | String ! | - | No description provided |
| waitForProvisioned | Boolean ! | - | 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 booleanfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| renderedContent | String ! | - | 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 stringfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| renderedContent | String ! | - | 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 stringfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| dir | Directory ! | - | No description provided |
| repoName | String ! | - | No description provided |
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| repoName | String ! | - | No description provided |
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| repoName | String ! | - | No description provided |
| labelList | [String ! ] ! | - | No description provided |
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| name | String ! | - | No description provided |
| value | String ! | - | No description provided |
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| repoName | String ! | - | No description provided |
| name | String ! | - | No description provided |
| value | String ! | - | No description provided |
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| ghToken | Secret ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRET set-repo-variables --gh-token env:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| ghToken | Secret ! | - | No description provided |
| kindContainer | Container ! | - | 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:TAGfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| name | String ! | - | No description provided |
| value | String ! | - | No description provided |
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| ghToken | Secret ! | - | No description provided |
| kindContainer | Container ! | - | 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:TAGfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| ghToken | Secret ! | - | No description provided |
Example
dagger -m github.com/prefapp/daggerverse/firestartr-bootstrap@615802a133028343c47e7c9b68607b4cee7dd559 call \
--credentials-secret env:MYSECRET gh-container --gh-token env:MYSECRETfunc (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-tokenfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| jsonInput | String ! | - | No description provided |
| workflowFileName | String ! | - | No description provided |
| repo | String ! | - | No description provided |
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| ghToken | Secret ! | - | 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:MYSECRETfunc (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
| Name | Type | Default Value | Description |
|---|---|---|---|
| kindContainer | Container ! | - | 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 string2func (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 moduleFunction FirestartrBootstrapBootstrap.firestartr is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.firestartr is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.firestartr is not accessible from the firestartr-bootstrap modulepushFiles() 🔗
Return Type
FirestartrBootstrapPushFiles ! Example
Function FirestartrBootstrapBootstrap.pushFiles is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.pushFiles is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.pushFiles is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.pushFiles is not accessible from the firestartr-bootstrap moduleorg() 🔗
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.org is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.org is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.org is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.org is not accessible from the firestartr-bootstrap modulecomponents() 🔗
Return Type
[FirestartrBootstrapComponent ! ] ! Example
Function FirestartrBootstrapBootstrap.components is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.components is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.components is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.components is not accessible from the firestartr-bootstrap moduledefaultSystemName() 🔗
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.defaultSystemName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultSystemName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultSystemName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultSystemName is not accessible from the firestartr-bootstrap moduledefaultDomainName() 🔗
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.defaultDomainName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultDomainName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultDomainName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultDomainName is not accessible from the firestartr-bootstrap moduledefaultFirestartrGroup() 🔗
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.defaultFirestartrGroup is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultFirestartrGroup is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultFirestartrGroup is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultFirestartrGroup is not accessible from the firestartr-bootstrap moduledefaultBranch() 🔗
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.defaultBranch is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultBranch is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultBranch is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultBranch is not accessible from the firestartr-bootstrap moduledefaultBranchStrategy() 🔗
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.defaultBranchStrategy is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultBranchStrategy is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultBranchStrategy is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultBranchStrategy is not accessible from the firestartr-bootstrap moduledefaultOrgPermissions() 🔗
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.defaultOrgPermissions is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultOrgPermissions is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultOrgPermissions is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.defaultOrgPermissions is not accessible from the firestartr-bootstrap modulefinalSecretStoreName() 🔗
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.finalSecretStoreName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.finalSecretStoreName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.finalSecretStoreName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.finalSecretStoreName is not accessible from the firestartr-bootstrap modulewebhookUrl() 🔗
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.webhookUrl is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.webhookUrl is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.webhookUrl is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.webhookUrl is not accessible from the firestartr-bootstrap modulehasFreePlan() 🔗
Autocalculated
Return Type
Boolean ! Example
Function FirestartrBootstrapBootstrap.hasFreePlan is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.hasFreePlan is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.hasFreePlan is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.hasFreePlan is not accessible from the firestartr-bootstrap modulebotName() 🔗
Stored in Credentialsfile.yaml, but needed here for templating
Return Type
String ! Example
Function FirestartrBootstrapBootstrap.botName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.botName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.botName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapBootstrap.botName is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapCredsFile 🔗
cloudProvider() 🔗
Return Type
FirestartrBootstrapCloudProvider ! Example
Function FirestartrBootstrapCredsFile.cloudProvider is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCredsFile.cloudProvider is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCredsFile.cloudProvider is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCredsFile.cloudProvider is not accessible from the firestartr-bootstrap modulegithubApp() 🔗
Return Type
FirestartrBootstrapGithubApp ! Example
Function FirestartrBootstrapCredsFile.githubApp is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCredsFile.githubApp is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCredsFile.githubApp is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCredsFile.githubApp is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapCr 🔗
kind() 🔗
Return Type
String ! Example
Function FirestartrBootstrapCr.kind is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCr.kind is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCr.kind is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCr.kind is not accessible from the firestartr-bootstrap modulemetadata() 🔗
Return Type
FirestartrBootstrapMetadata ! Example
Function FirestartrBootstrapCr.metadata is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCr.metadata is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCr.metadata is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCr.metadata is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapFirestartr 🔗
version() 🔗
Return Type
String ! Example
Function FirestartrBootstrapFirestartr.version is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapFirestartr.version is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapFirestartr.version is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapFirestartr.version is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapPushFiles 🔗
claims() 🔗
Return Type
FirestartrBootstrapPushFilesRepo ! Example
Function FirestartrBootstrapPushFiles.claims is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFiles.claims is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFiles.claims is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFiles.claims is not accessible from the firestartr-bootstrap modulecrs() 🔗
Return Type
FirestartrBootstrapCrs ! Example
Function FirestartrBootstrapPushFiles.crs is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFiles.crs is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFiles.crs is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFiles.crs is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapComponent 🔗
name() 🔗
Return Type
String ! Example
Function FirestartrBootstrapComponent.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.name is not accessible from the firestartr-bootstrap modulerepoName() 🔗
Return Type
String ! Example
Function FirestartrBootstrapComponent.repoName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.repoName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.repoName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.repoName is not accessible from the firestartr-bootstrap moduledescription() 🔗
Return Type
String ! Example
Function FirestartrBootstrapComponent.description is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.description is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.description is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.description is not accessible from the firestartr-bootstrap moduledefaultBranch() 🔗
Return Type
String ! Example
Function FirestartrBootstrapComponent.defaultBranch is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.defaultBranch is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.defaultBranch is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.defaultBranch is not accessible from the firestartr-bootstrap modulefeatures() 🔗
Return Type
[FirestartrBootstrapFeature ! ] ! Example
Function FirestartrBootstrapComponent.features is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.features is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.features is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.features is not accessible from the firestartr-bootstrap modulevariables() 🔗
Return Type
[FirestartrBootstrapVariable ! ] ! Example
Function FirestartrBootstrapComponent.variables is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.variables is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.variables is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.variables is not accessible from the firestartr-bootstrap modulesecrets() 🔗
Secrets have the same structure as Variables
Return Type
[FirestartrBootstrapVariable ! ] ! Example
Function FirestartrBootstrapComponent.secrets is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.secrets is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.secrets is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.secrets is not accessible from the firestartr-bootstrap modulelabels() 🔗
Return Type
[String ! ] ! Example
Function FirestartrBootstrapComponent.labels is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.labels is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.labels is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.labels is not accessible from the firestartr-bootstrap moduleskipped() 🔗
Return Type
Boolean ! Example
Function FirestartrBootstrapComponent.skipped is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.skipped is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.skipped is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapComponent.skipped is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapCloudProvider 🔗
providerConfigName() 🔗
Return Type
String ! Example
Function FirestartrBootstrapCloudProvider.providerConfigName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.providerConfigName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.providerConfigName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.providerConfigName is not accessible from the firestartr-bootstrap moduleconfig() 🔗
Return Type
FirestartrBootstrapConfigProvider ! Example
Function FirestartrBootstrapCloudProvider.config is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.config is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.config is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.config is not accessible from the firestartr-bootstrap modulesource() 🔗
Return Type
String ! Example
Function FirestartrBootstrapCloudProvider.source is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.source is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.source is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.source is not accessible from the firestartr-bootstrap moduletype() 🔗
Return Type
String ! Example
Function FirestartrBootstrapCloudProvider.type is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.type is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.type is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.type is not accessible from the firestartr-bootstrap moduleversion() 🔗
Return Type
String ! Example
Function FirestartrBootstrapCloudProvider.version is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.version is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.version is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.version is not accessible from the firestartr-bootstrap modulename() 🔗
Return Type
String ! Example
Function FirestartrBootstrapCloudProvider.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCloudProvider.name is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapGithubApp 🔗
providerConfigName() 🔗
Return Type
String ! Example
Function FirestartrBootstrapGithubApp.providerConfigName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.providerConfigName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.providerConfigName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.providerConfigName is not accessible from the firestartr-bootstrap moduleowner() 🔗
Return Type
String ! Example
Function FirestartrBootstrapGithubApp.owner is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.owner is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.owner is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.owner is not accessible from the firestartr-bootstrap modulebotName() 🔗
Return Type
String ! Example
Function FirestartrBootstrapGithubApp.botName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.botName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.botName is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.botName is not accessible from the firestartr-bootstrap modulepem() 🔗
Return Type
String ! Example
Function FirestartrBootstrapGithubApp.pem is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.pem is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.pem is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.pem is not accessible from the firestartr-bootstrap modulerawPem() 🔗
Return Type
String ! Example
Function FirestartrBootstrapGithubApp.rawPem is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.rawPem is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.rawPem is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.rawPem is not accessible from the firestartr-bootstrap moduleghAppId() 🔗
Return Type
String ! Example
Function FirestartrBootstrapGithubApp.ghAppId is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.ghAppId is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.ghAppId is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.ghAppId is not accessible from the firestartr-bootstrap moduleinstallationId() 🔗
Return Type
String ! Example
Function FirestartrBootstrapGithubApp.installationId is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.installationId is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.installationId is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.installationId is not accessible from the firestartr-bootstrap modulebotPat() 🔗
Return Type
String ! Example
Function FirestartrBootstrapGithubApp.botPat is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.botPat is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.botPat is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapGithubApp.botPat is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapMetadata 🔗
name() 🔗
Return Type
String ! Example
Function FirestartrBootstrapMetadata.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapMetadata.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapMetadata.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapMetadata.name is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapPushFilesRepo 🔗
push() 🔗
Return Type
Boolean ! Example
Function FirestartrBootstrapPushFilesRepo.push is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFilesRepo.push is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFilesRepo.push is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFilesRepo.push is not accessible from the firestartr-bootstrap modulerepo() 🔗
Return Type
String ! Example
Function FirestartrBootstrapPushFilesRepo.repo is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFilesRepo.repo is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFilesRepo.repo is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapPushFilesRepo.repo is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapCrs 🔗
providers() 🔗
Return Type
FirestartrBootstrapProviders ! Example
Function FirestartrBootstrapCrs.providers is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCrs.providers is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCrs.providers is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapCrs.providers is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapFeature 🔗
name() 🔗
Return Type
String ! Example
Function FirestartrBootstrapFeature.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapFeature.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapFeature.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapFeature.name is not accessible from the firestartr-bootstrap moduleversion() 🔗
Return Type
String ! Example
Function FirestartrBootstrapFeature.version is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapFeature.version is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapFeature.version is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapFeature.version is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapVariable 🔗
name() 🔗
Return Type
String ! Example
Function FirestartrBootstrapVariable.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapVariable.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapVariable.name is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapVariable.name is not accessible from the firestartr-bootstrap modulevalue() 🔗
Return Type
String ! Example
Function FirestartrBootstrapVariable.value is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapVariable.value is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapVariable.value is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapVariable.value is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapConfigProvider 🔗
bucket() 🔗
Return Type
String ! Example
Function FirestartrBootstrapConfigProvider.bucket is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.bucket is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.bucket is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.bucket is not accessible from the firestartr-bootstrap moduleregion() 🔗
Return Type
String ! Example
Function FirestartrBootstrapConfigProvider.region is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.region is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.region is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.region is not accessible from the firestartr-bootstrap moduleaccessKey() 🔗
Return Type
String ! Example
Function FirestartrBootstrapConfigProvider.accessKey is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.accessKey is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.accessKey is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.accessKey is not accessible from the firestartr-bootstrap modulesecretKey() 🔗
Return Type
String ! Example
Function FirestartrBootstrapConfigProvider.secretKey is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.secretKey is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.secretKey is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.secretKey is not accessible from the firestartr-bootstrap moduletoken() 🔗
Return Type
String ! Example
Function FirestartrBootstrapConfigProvider.token is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.token is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.token is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapConfigProvider.token is not accessible from the firestartr-bootstrap moduleFirestartrBootstrapProviders 🔗
github() 🔗
Return Type
FirestartrBootstrapPushFilesRepo ! Example
Function FirestartrBootstrapProviders.github is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapProviders.github is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapProviders.github is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapProviders.github is not accessible from the firestartr-bootstrap moduleterraform() 🔗
Return Type
FirestartrBootstrapPushFilesRepo ! Example
Function FirestartrBootstrapProviders.terraform is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapProviders.terraform is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapProviders.terraform is not accessible from the firestartr-bootstrap moduleFunction FirestartrBootstrapProviders.terraform is not accessible from the firestartr-bootstrap module