diff --git a/core/modules/migrate_drupal/config/optional/migrate.migration.d7_text_settings.yml b/core/modules/migrate_drupal/config/optional/migrate.migration.d7_text_settings.yml
new file mode 100644
index 0000000..937a5e7
--- /dev/null
+++ b/core/modules/migrate_drupal/config/optional/migrate.migration.d7_text_settings.yml
@@ -0,0 +1,17 @@
+id: d7_text_settings
+label: Drupal 7 teaser length configuration
+migration_tags:
+  - Drupal 7
+source:
+  plugin: variable
+  variables:
+    - teaser_length
+process:
+  default_summary_length: teaser_length
+destination:
+  plugin: config
+  config_name: text.settings
+dependencies:
+  module:
+    - migrate_drupal
+    - text
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 f6faf11..6a666b5 100644
--- a/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
+++ b/core/modules/migrate_drupal/src/Tests/Table/d7/Variable.php
@@ -305,6 +305,9 @@ public function load() {
       'name' => 'suppress_itok_output',
       'value' => 'b:1;',
     ))->values(array(
+      'name' => 'teaser_length',
+      'value' => 'i:1024;',
+    ))->values(array(
       'name' => 'theme_default',
       'value' => 's:6:"bartik";',
     ))->values(array(
@@ -419,4 +422,4 @@ public function load() {
   }
 
 }
-#dfc4cdd451a6575677b8c10442893d26
+#79b570355819b69a965c4911a38fe583
diff --git a/core/modules/migrate_drupal/src/Tests/d7/MigrateTextSettingsTest.php b/core/modules/migrate_drupal/src/Tests/d7/MigrateTextSettingsTest.php
new file mode 100644
index 0000000..89d2d61
--- /dev/null
+++ b/core/modules/migrate_drupal/src/Tests/d7/MigrateTextSettingsTest.php
@@ -0,0 +1,42 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\migrate_drupal\Tests\d7\MigrateTextSettingsTest.
+ */
+
+namespace Drupal\migrate_drupal\Tests\d7;
+
+use Drupal\migrate\MigrateExecutable;
+use Drupal\migrate_drupal\Entity\Migration;
+
+/**
+ * Tests migration of Text variables to configuration.
+ *
+ * @group migrate_drupal 7.x
+ */
+class MigrateTextSettingsTest extends MigrateDrupal7TestBase {
+
+  public static $modules = ['text'];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->installConfig(['text']);
+    $this->loadDumps([
+      $this->getDumpDirectory() . '/Variable.php',
+    ]);
+    $migration = Migration::load('d7_text_settings');
+    (new MigrateExecutable($migration, $this))->import();
+  }
+
+  /**
+   * Tests migration of Text's settings to configuration.
+   */
+  public function testMigration() {
+    $this->assertIdentical(1024, \Drupal::config('text.settings')->get('default_summary_length'));
+  }
+
+}
