diff --git a/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php b/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
index e336715..9eaeb5e 100644
--- a/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
+++ b/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
@@ -329,6 +329,21 @@ public function load() {
       'name' => 'theme_default',
       'value' => 's:6:"bartik";',
     ))->values(array(
+      'name' => 'update_check_frequency',
+      'value' => 'i:1;',
+    ))->values(array(
+      'name' => 'update_fetch_url',
+      'value' => 's:23:"http://127.0.0.1/update";',
+    ))->values(array(
+      'name' => 'update_max_fetch_attempts',
+      'value' => 'i:3;',
+    ))->values(array(
+      'name' => 'update_notification_threshold',
+      'value' => 's:3:"all";',
+    ))->values(array(
+      'name' => 'update_notify_emails',
+      'value' => 'a:1:{i:0;s:19:"webmaster@127.0.0.1";}',
+    ))->values(array(
       'name' => 'user_admin_role',
       'value' => 's:1:"3";',
     ))->values(array(
@@ -440,4 +455,4 @@ public function load() {
   }
 
 }
-#6e1892883e650f9e71e165fa6737ac4c
+#cd34e848978b3ef6d5deabaf85b694d6
diff --git a/core/modules/update/migration_templates/d7_update_settings.yml b/core/modules/update/migration_templates/d7_update_settings.yml
new file mode 100644
index 0000000..3f2022a
--- /dev/null
+++ b/core/modules/update/migration_templates/d7_update_settings.yml
@@ -0,0 +1,21 @@
+id: d7_update_settings
+label: Drupal 7 update configuration
+migration_tags:
+  - Drupal 7
+source:
+  plugin: variable
+  variables:
+    - update_max_fetch_attempts
+    - update_fetch_url
+    - update_notification_threshold
+    - update_notify_emails
+    - update_check_frequency
+process:
+  'fetch/max_attempts': update_max_fetch_attempts
+  'fetch/url': update_fetch_url
+  'notification/threshold': update_notification_threshold
+  'notification/emails': update_notify_emails
+  'check/interval_days': update_check_frequency
+destination:
+  plugin: config
+  config_name: update.settings
diff --git a/core/modules/update/src/Tests/Migrate/d7/MigrateUpdateSettingsTest.php b/core/modules/update/src/Tests/Migrate/d7/MigrateUpdateSettingsTest.php
new file mode 100644
index 0000000..992d2d8
--- /dev/null
+++ b/core/modules/update/src/Tests/Migrate/d7/MigrateUpdateSettingsTest.php
@@ -0,0 +1,43 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\update\Tests\d7\MigrateUpdateSettingsTest.
+ */
+
+namespace Drupal\update\Tests\d7;
+
+use Drupal\migrate_drupal\Tests\d7\MigrateDrupal7TestBase;
+
+/**
+ * Tests migration of Update's variables into configuration.
+ *
+ * @group update
+ */
+class MigrateUpdateSettingsTest extends MigrateDrupal7TestBase {
+
+  public static $modules = ['update'];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->installConfig(static::$modules);
+    $this->loadDumps(['Variable.php']);
+    $this->executeMigration('d7_update_settings');
+  }
+
+  /**
+   * Tests migration of Update's settings to configuration.
+   */
+  public function testMigration() {
+    $config = \Drupal::config('update.settings')->get();
+    $this->assertIdentical(3, $config['fetch']['max_attempts']);
+    $this->assertIdentical('http://127.0.0.1/update', $config['fetch']['url']);
+    $this->assertIdentical('all', $config['notification']['threshold']);
+    $this->assertIdentical(['webmaster@127.0.0.1'], $config['notification']['emails']);
+    $this->assertIdentical(1, $config['check']['interval_days']);
+  }
+
+}
