 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
      View Source
      
  const BuilderId = "packer.oracle.classic"
    BuilderId uniquely identifies the builder
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Artifact ¶
type Artifact struct {
	MachineImageName string
	MachineImageFile string
	ImageListVersion int
	// contains filtered or unexported fields
}
    Artifact is an artifact implementation that contains Image List and Machine Image info.
type Builder ¶
type Builder struct {
	// contains filtered or unexported fields
}
    Builder is a builder implementation that creates Oracle OCI custom images.
type Config ¶
type Config struct {
	common.PackerConfig `mapstructure:",squash"`
	Comm                communicator.Config `mapstructure:",squash"`
	// Access config overrides
	Username       string `mapstructure:"username"`
	Password       string `mapstructure:"password"`
	IdentityDomain string `mapstructure:"identity_domain"`
	APIEndpoint    string `mapstructure:"api_endpoint"`
	// Image
	ImageName       string        `mapstructure:"image_name"`
	Shape           string        `mapstructure:"shape"`
	SourceImageList string        `mapstructure:"source_image_list"`
	SnapshotTimeout time.Duration `mapstructure:"snapshot_timeout"`
	DestImageList   string        `mapstructure:"dest_image_list"`
	// Attributes and Attributes file are both optional and mutually exclusive.
	Attributes     string `mapstructure:"attributes"`
	AttributesFile string `mapstructure:"attributes_file"`
	// Optional; if you don't enter anything, the image list description
	// will read "Packer-built image list"
	DestImageListDescription string `mapstructure:"image_description"`
	// Optional. Describes what computers are allowed to reach your instance
	// via SSH. This whitelist must contain the computer you're running Packer
	// from. It defaults to public-internet, meaning that you can SSH into your
	// instance from anywhere as long as you have the right keys
	SSHSourceList string `mapstructure:"ssh_source_list"`
	// contains filtered or unexported fields
}
     Click to show internal directories. 
   Click to hide internal directories.