Documentation ¶
Overview ¶
Package dumpinventory request CAI to perform an export
Triggered by ¶
Cloud Scheduler Job, through PubSub messages.
Instances ¶
- one for all IAM bindings policies.
- one per AssetType for resource metadata exports.
Output ¶
None, CAI execute exports as an asynchonous task delivered in a Google Cloud Storage bucket.
Automatic retrying ¶
Yes.
Required environment variables ¶
- CAIEXPORTBUCKETNAME the name of the GCS bucket where CAI dumps should be delivered.
- SETTINGSFILENAME name of the JSON setting file.
Implementation example
package p import ( "context" "github.com/BrunoReboul/ram/services/dumpinventory" "github.com/BrunoReboul/ram/utilities/ram" ) var global dumpinventory.Global var ctx = context.Background() // EntryPoint is the function to be executed for each cloud function occurence func EntryPoint(ctxEvent context.Context, PubSubMessage ram.PubSubMessage) error { return dumpinventory.EntryPoint(ctxEvent, PubSubMessage, &global) } func init() { dumpinventory.Initialize(ctx, &global) }
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func EntryPoint ¶
EntryPoint is the function to be executed for each cloud function occurence
func Initialize ¶
Initialize is to be executed in the init() function of the cloud function to optimize the cold start
Types ¶
type Global ¶
type Global struct {
// contains filtered or unexported fields
}
Global structure for global variables to optimize the cloud function performances
type InstanceDeployment ¶ added in v0.0.24
type InstanceDeployment struct { DumpTimestamp time.Time `yaml:"dumpTimestamp"` Core *deploy.Core Settings struct { Service struct { GSU gsu.Parameters IAM iamgt.Parameters GCB gcb.Parameters GCF gcf.Parameters } Instance struct { GCF gcf.Event } } }
InstanceDeployment settings and artifacts structure
func NewInstanceDeployment ¶ added in v0.0.24
func NewInstanceDeployment() *InstanceDeployment
NewInstanceDeployment create deployment structure with default settings set
func (*InstanceDeployment) Deploy ¶ added in v0.0.24
func (instanceDeployment *InstanceDeployment) Deploy() (err error)
Deploy a service instance
Source Files ¶
- core.go
- doc.go
- meth_instancedeployment_deploy.go
- meth_instancedeployment_deploygaeapp.go
- meth_instancedeployment_deploygcffunction.go
- meth_instancedeployment_deploygpstopic.go
- meth_instancedeployment_deploygrmmonitoringorgtbindings.go
- meth_instancedeployment_deploygsuapi.go
- meth_instancedeployment_deployiamserviceaccount.go
- type_instancedeployment.go