github.com/hobbeswalsh/terraform@v0.3.7-0.20150619183303-ad17cf55a0fa/website/source/docs/plugins/provider.html.md (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Provider Plugins"
     4  sidebar_current: "docs-plugins-provider"
     5  description: |-
     6    A provider in Terraform is responsible for the lifecycle of a resource: create, read, update, delete. An example of a provider is AWS, which can manage resources of type `aws_instance`, `aws_eip`, `aws_elb`, etc.
     7  ---
     8  
     9  # Provider Plugins
    10  
    11  A provider in Terraform is responsible for the lifecycle of a resource:
    12  create, read, update, delete. An example of a provider is AWS, which
    13  can manage resources of type `aws_instance`, `aws_eip`, `aws_elb`, etc.
    14  
    15  The primary reasons to care about provider plugins are:
    16  
    17    * You want to add a new resource type to an existing provider.
    18  
    19    * You want to write a completely new provider for managing resource
    20      types in a system not yet supported.
    21  
    22    * You want to write a completely new provider for custom, internal
    23      systems such as a private inventory management system.
    24  
    25  ~> **Advanced topic!** Plugin development is a highly advanced
    26  topic in Terraform, and is not required knowledge for day-to-day usage.
    27  If you don't plan on writing any plugins, we recommend not reading
    28  this section of the documentation.
    29  
    30  If you're interested in provider development, then read on. The remainder
    31  of this page will assume you're familiar with
    32  [plugin basics](/docs/plugins/basics.html) and that you already have
    33  a basic development environment setup.
    34  
    35  ## Low-Level Interface
    36  
    37  The interface you must implement for providers is
    38  [ResourceProvider](https://github.com/hashicorp/terraform/blob/master/terraform/resource_provider.go).
    39  
    40  This interface is extremely low level, however, and we don't recommend
    41  you implement it directly. Implementing the interface directly is error
    42  prone, complicated, and difficult.
    43  
    44  Instead, we've developed some higher level libraries to help you out
    45  with developing providers. These are the same libraries we use in our
    46  own core providers.
    47  
    48  ## helper/schema
    49  
    50  The `helper/schema` library is a framework we've built to make creating
    51  providers extremely easy. This is the same library we use to build most
    52  of the core providers.
    53  
    54  To give you an idea of how productive you can become with this framework:
    55  we implemented the Google Cloud provider in about 6 hours of coding work.
    56  This isn't a simple provider, and we did have knowledge of
    57  the framework beforehand, but it goes to show how expressive the framework
    58  can be.
    59  
    60  The GoDoc for `helper/schema` can be
    61  [found here](http://godoc.org/github.com/hashicorp/terraform/helper/schema).
    62  This is API-level documentation but will be extremely important
    63  for you going forward.
    64  
    65  ## Provider
    66  
    67  The first thing to do in your plugin is to create the
    68  [schema.Provider](http://godoc.org/github.com/hashicorp/terraform/helper/schema#Provider) structure.
    69  This structure implements the `ResourceProvider` interface. We
    70  recommend creating this structure in a function to make testing easier
    71  later. Example:
    72  
    73  ```
    74  func Provider() *schema.Provider {
    75  	return &schema.Provider{
    76  		...
    77  	}
    78  }
    79  ```
    80  
    81  Within the `schema.Provider`, you should initialize all the fields. They
    82  are documented within the godoc, but a brief overview is here as well:
    83  
    84    * `Schema` - This is the configuration schema for the provider itself.
    85        You should define any API keys, etc. here. Schemas are covered below.
    86  
    87    * `ResourcesMap` - The map of resources that this provider supports.
    88        All keys are resource names and the values are the
    89        [schema.Resource](http://godoc.org/github.com/hashicorp/terraform/helper/schema#Resource) structures implementing this resource.
    90  
    91    * `ConfigureFunc` - This function callback is used to configure the
    92        provider. This function should do things such as initialize any API
    93        clients, validate API keys, etc. The `interface{}` return value of
    94        this function is the `meta` parameter that will be passed into all
    95        resource [CRUD](http://en.wikipedia.org/wiki/Create,_read,_update_and_delete)
    96        functions. In general, the returned value is a configuration structure
    97        or a client.
    98  
    99  As part of the unit tests, you should call `InternalValidate`. This is used
   100  to verify the structure of the provider and all of the resources, and reports
   101  an error if it is invalid. An example test is shown below:
   102  
   103  ```
   104  func TestProvider(t *testing.T) {
   105  	if err := Provider().InternalValidate(); err != nil {
   106  		t.Fatalf("err: %s", err)
   107  	}
   108  }
   109  ```
   110  
   111  Having this unit test will catch a lot of beginner mistakes as you build
   112  your provider.
   113  
   114  ## Resources
   115  
   116  Next, you'll want to create the resources that the provider can manage.
   117  These resources are put into the `ResourcesMap` field of the provider
   118  structure. Again, we recommend creating functions to instantiate these.
   119  An example is shown below.
   120  
   121  ```
   122  func resourceComputeAddress() *schema.Resource {
   123  	return &schema.Resource {
   124  		...
   125  	}
   126  }
   127  ```
   128  
   129  Resources are described using the
   130  [schema.Resource](http://godoc.org/github.com/hashicorp/terraform/helper/schema#Resource)
   131  structure. This structure has the following fields:
   132  
   133    * `Schema` - The configuration schema for this resource. Schemas are
   134        covered in more detail below.
   135  
   136    * `Create`, `Read`, `Update`, and `Delete` - These are the callback
   137        functions that implement CRUD operations for the resource. The only
   138        optional field is `Update`. If your resource doesn't support update, then
   139        you may keep that field nil.
   140  
   141  The CRUD operations in more detail, along with their contracts:
   142  
   143    * `Create` - This is called to create a new instance of the resource.
   144        Terraform guarantees that an existing ID is not set on the resource
   145        data. That is, you're working with a new resource.
   146  
   147    * `Read` - This is called to resync the local state with the remote state.
   148        Terraform guarantees that an existing ID will be set. This ID should be
   149        used to look up the resource. Any remote data should be updated into
   150        the local data. **No changes to the remote resource are to be made.**
   151  
   152    * `Update` - This is called to update properties of an existing resource.
   153        Terraform guarantees that an existing ID will be set. Additionally,
   154        the only changed attributes are guaranteed to be those that support
   155        update, as specified by the schema. Be careful to read about partial
   156        states below.
   157  
   158    * `Delete` - This is called to delete the resource. Terraform guarantees
   159        an existing ID will be set.
   160  
   161    * `Exists` - This is called to verify a resource still exists. It is
   162        called prior to `Read`, and lowers the burden of `Read` to be able
   163        to assume the resource exists.
   164  
   165  ## Schemas
   166  
   167  Both providers and resources require a schema to be specified. The schema
   168  is used to define the structure of the configuration, the types, etc. It is
   169  very important to get correct.
   170  
   171  In both provider and resource, the schema is a `map[string]*schema.Schema`.
   172  The key of this map is the configuration key, and the value is a schema for
   173  the value of that key.
   174  
   175  Schemas are incredibly powerful, so this documentation page won't attempt
   176  to cover the full power of them. Instead, the API docs should be referenced
   177  which cover all available settings.
   178  
   179  We recommend viewing schemas of existing or similar providers to learn
   180  best practices. A good starting place is the
   181  [core Terraform providers](https://github.com/hashicorp/terraform/tree/master/builtin/providers).
   182  
   183  ## Resource Data
   184  
   185  The parameter to provider configuration as well as all the CRUD operations
   186  on a resource is a
   187  [schema.ResourceData](http://godoc.org/github.com/hashicorp/terraform/helper/schema#ResourceData).
   188  This structure is used to query configurations as well as to set information
   189  about the resource such as its ID, connection information, and computed
   190  attributes.
   191  
   192  The API documentation covers ResourceData well, as well as the core providers
   193  in Terraform.
   194  
   195  **Partial state** deserves a special mention. Occasionally in Terraform, create or
   196  update operations are not atomic; they can fail halfway through. As an example,
   197  when creating an AWS security group, creating the group may succeed,
   198  but creating all the initial rules may fail. In this case, it is incredibly
   199  important that Terraform record the correct _partial state_ so that a
   200  subsequent `terraform apply` fixes this resource.
   201  
   202  Most of the time, partial state is not required. When it is, it must be
   203  specifically enabled. An example is shown below:
   204  
   205  ```
   206  func resourceUpdate(d *schema.ResourceData, meta interface{}) error {
   207  	// Enable partial state mode
   208  	d.Partial(true)
   209  
   210  	if d.HasChange("tags") {
   211  		// If an error occurs, return with an error,
   212  		// we didn't finish updating
   213  		if err := updateTags(d, meta); err != nil {
   214  			return err
   215  		}
   216  
   217  		d.SetPartial("tags")
   218  	}
   219  
   220  	if d.HasChange("name") {
   221  		if err := updateName(d, meta); err != nil {
   222  			return err
   223  		}
   224  
   225  		d.SetPartial("name")
   226  	}
   227  
   228  	// We succeeded, disable partial mode
   229  	d.Partial(false)
   230  
   231  	return nil
   232  }
   233  ```
   234  
   235  In the example above, it is possible that setting the `tags` succeeds,
   236  but setting the `name` fails. In this scenario, we want to make sure
   237  that only the state of the `tags` is updated. To do this the
   238  `Partial` and `SetPartial` functions are used.
   239  
   240  `Partial` toggles partial-state mode. When disabled, all changes are merged
   241  into the state upon result of the operation. When enabled, only changes
   242  enabled with `SetPartial` are merged in.
   243  
   244  `SetPartial` tells Terraform what state changes to adopt upon completion
   245  of an operation. You should call `SetPartial` with every key that is safe
   246  to merge into the state. The parameter to `SetPartial` is a prefix, so
   247  if you have a nested structure and want to accept the whole thing,
   248  you can just specify the prefix.